Android 프로그램 버 전 업데이트 알림 표시 줄 업데이트 다운로드 설치

Android 응용 검사 버 전 업데이트 후 알림 표시 줄 에서 다운로드,다운로드 진 도 를 업데이트,다운로드 완료 자동 설치,효과 도 는 다음 과 같 습 니 다.

•현재 버 전 번호 검사
AndroidManifest 파일 의 versionCode 는 버 전 을 표시 하 는 데 사 용 됩 니 다.서버 에 새 버 전의 apk 를 놓 습 니 다.versioncode 는 현재 버 전보 다 크 고 아래 코드 는 versioncode 의 값 을 가 져 옵 니 다.

PackageInfo packageInfo = context.getPackageManager().getPackageInfo(context.getPackageName(), 0);
int localVersion = packageInfo.versionCode; 
현재 versioncode 와 서버 를 비교 하여 작 으 면 버 전 업 데 이 트 를 진행 합 니 다.
•APK 파일 다운로드

/**
*   apk
* 
* @param apkUri
*/private void downLoadNewApk(String apkUri, String version) {
manager = (NotificationManager) context
.getSystemService((context.NOTIFICATION_SERVICE));
notify = new Notification();
notify.icon = R.drawable.ic_launcher;
//              
notify.contentView = new RemoteViews(context.getPackageName(),
R.layout.view_notify_item);
manager.notify(100, notify);
//     apk  
File fileInstall = FileOperate.mkdirSdcardFile("downLoad", APK_NAME
+ version + ".apk");
downLoadSchedule(apkUri, completeHandler, context,
fileInstall);
}
FileOperate 는 자신 이 쓴 파일 도구 클래스 입 니 다.
알림 표시 줄 에 표 시 된 레이아웃,viewnotify_item.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginLeft="10dp"
android:background="#00000000"
android:padding="5dp" >
<ImageView
android:id="@+id/notify_icon_iv"
android:layout_width="25dp"
android:layout_height="25dp"
android:src="@drawable/ic_launcher" />
<TextView
android:id="@+id/notify_updata_values_tv"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_marginBottom="6dp"
android:layout_marginLeft="15dp"
android:layout_marginTop="5dp"
android:layout_toRightOf="@id/notify_icon_iv"
android:gravity="center_vertical"
android:text="0%"
android:textColor="@color/white"
android:textSize="12sp" />
<ProgressBar
android:id="@+id/notify_updata_progress"
style="@android:style/Widget.ProgressBar.Horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@id/notify_icon_iv"
android:layout_marginTop="4dp"
android:max="100" />
</RelativeLayout> 
/**
*     ,      ,     
* 
* @param uri
* @param handler
* @param context
* @param file
*/public static void downLoadSchedule(final String uri,
final Handler handler, Context context, final File file) {
if (!file.exists()) {
handler.sendEmptyMessage(-1);
return;
}
//          
final int perLength = 4096;
new Thread() {
@Override
public void run() {
super.run();
try {
URL url = new URL(uri);
HttpURLConnection conn = (HttpURLConnection) url
.openConnection();
conn.setDoInput(true);
conn.connect();
InputStream in = conn.getInputStream();
// 2865412
long length = conn.getContentLength();
//     1k
byte[] buffer = new byte[perLength];
int len = -1;
FileOutputStream out = new FileOutputStream(file);
int temp = 0;
while ((len = in.read(buffer)) != -1) {
//     
out.write(buffer, 0, len);
//     
int schedule = (int) ((file.length() * 100) / length);
//       (10,7,4     ,          )
if (temp != schedule
&& (schedule % 10 == 0 || schedule % 4 == 0 || schedule % 7 == 0)) {
//             
temp = schedule;
handler.sendEmptyMessage(schedule);
}
}
out.flush();
out.close();
in.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}.start();
}
handler 다운로드 진행 상황 에 따라 업데이트
•알림 표시 줄 진도 바 업데이트

/**
*      
*/ private Handler completeHandler = new Handler() {
public void handleMessage(android.os.Message msg) {
//      
if (msg.what < 100) {
notify.contentView.setTextViewText(
R.id.notify_updata_values_tv, msg.what + "%");
notify.contentView.setProgressBar(R.id.notify_updata_progress,
100, msg.what, false);
manager.notify(100, notify);
} else {
notify.contentView.setTextViewText(
R.id.notify_updata_values_tv, "    ");
notify.contentView.setProgressBar(R.id.notify_updata_progress,
100, msg.what, false);//      
manager.cancel(100);
installApk(fileInstall);
}
};
}; 
다운로드 완료 후 호출 시스템 설치.
•apk 설치

/**
*   apk
* 
* @param file
*/private void installApk(File file) {
Intent intent = new Intent();
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
intent.setAction(android.content.Intent.ACTION_VIEW);
intent.setDataAndType(Uri.fromFile(file),
"application/vnd.android.package-archive");
context.startActivity(intent);
}
설치 완료

좋은 웹페이지 즐겨찾기