android 自動檢測版本升級
轉自:http://blog.csdn.net/jj120522/article/details/7948554
在我們APP的開發中,往往都會遇到版本的升級,因為不可能有任何一個應用做的完美無缺,所以版本升級對APP應用來說是不可缺少的一部分.像新浪微博等一些應用軟體,三天兩頭提醒我升級.不過這樣也很正常,就像android 升級一樣,為了給使用者提供更方便更人性化的操作.說下具體實現吧,不過我是參考別人的。不管對你們有沒有幫助,總之對我有幫助啊,如果日後用到就直接copy了.哈哈,不扯了。
首先看一個檔案manifest檔案.
- <manifest xmlns:android="http://schemas.android.com/apk/res/android"
- package="com.jj.upgrade"
- android:versionCode="1"
- android:versionName="1.0" >
實現原理很簡單:伺服器端有個serverVersion,我們本地有個localVersion.伺服器端serverVersion>localVersion,這個時候我們就需要進行升級版本.原理大致就是這樣。具體實現請看下面.
- package com.jj.upgrade;
- import com.jj.Service.UpdateService;
- import android.app.AlertDialog;
- import android.app.Application;
- import android.content.DialogInterface;
- import android.content.Intent;
- import android.content.pm.PackageInfo;
- import android.content.pm.PackageManager.NameNotFoundException;
- /***
- * MyApplication
- *
- * @author zhangjia
- *
- */
- public class MyApplication extends Application {
- public static int localVersion = 0;// 本地安裝版本
- public static int serverVersion = 2;// 伺服器版本
- public static String downloadDir = "jj/";// 安裝目錄
- @Override
- public void onCreate() {
- super.onCreate();
- try {
- PackageInfo packageInfo = getApplicationContext()
- .getPackageManager().getPackageInfo(getPackageName(), 0);
- localVersion = packageInfo.versionCode;
- } catch (NameNotFoundException e) {
- e.printStackTrace();
- }
- /***
- * 在這裡寫一個方法用於請求獲取伺服器端的serverVersion.
- */
- }
- }
我們一般把全域性的東西放到application裡面.
- public class MainActivity extends Activity {
- private MyApplication myApplication;
- @Override
- public void onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
- setContentView(R.layout.main);
- checkVersion();
- }
- /***
- * 檢查是否更新版本
- */
- public void checkVersion() {
- myApplication = (MyApplication) getApplication();
- if (myApplication.localVersion < myApplication.serverVersion) {
- // 發現新版本,提示使用者更新
- AlertDialog.Builder alert = new AlertDialog.Builder(this);
- alert.setTitle("軟體升級")
- .setMessage("發現新版本,建議立即更新使用.")
- .setPositiveButton("更新",
- new DialogInterface.OnClickListener() {
- public void onClick(DialogInterface dialog,
- int which) {
- Intent updateIntent = new Intent(
- MainActivity.this,
- UpdateService.class);
- updateIntent.putExtra(
- "app_name",
- getResources().getString(
- R.string.app_name));
- startService(updateIntent);
- }
- })
- .setNegativeButton("取消",
- new DialogInterface.OnClickListener() {
- public void onClick(DialogInterface dialog,
- int which) {
- dialog.dismiss();
- }
- });
- alert.create().show();
- }
- }
- }
最主要的是UpdateService服務類,
- @Override
- public int onStartCommand(Intent intent, int flags, int startId) {
- app_name = intent.getStringExtra("app_name");
- // 建立檔案
- FileUtil.createFile(app_name);// 建立檔案
- createNotification();// 首次建立
- createThread();// 執行緒下載
- return super.onStartCommand(intent, flags, startId);
- }
建立路徑及檔案,這裡就不介紹了,不明白了下載原始碼看.
首先我們先 看createNotification().這個方法:
- /***
- * 建立通知欄
- */
- RemoteViews contentView;
- public void createNotification() {
- notificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
- notification = new Notification();
- notification.icon = R.drawable.ic_launcher;// 這個圖示必須要設定,不然下面那個RemoteViews不起作用.
- // 這個引數是通知提示閃出來的值.
- notification.tickerText = "開始下載";
- //
- // updateIntent = new Intent(this, MainActivity.class);
- // pendingIntent = PendingIntent.getActivity(this, 0, updateIntent, 0);
- //
- // // 這裡面的引數是通知欄view顯示的內容
- // notification.setLatestEventInfo(this, app_name, "下載:0%",
- // pendingIntent);
- //
- // notificationManager.notify(notification_id, notification);
- /***
- * 在這裡我們用自定的view來顯示Notification
- */
- contentView = new RemoteViews(getPackageName(),
- R.layout.notification_item);
- contentView.setTextViewText(R.id.notificationTitle, "正在下載");
- contentView.setTextViewText(R.id.notificationPercent, "0%");
- contentView.setProgressBar(R.id.notificationProgress, 100, 0, false);
- notification.contentView = contentView;
- updateIntent = new Intent(this, MainActivity.class);
- updateIntent.addFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP);
- pendingIntent = PendingIntent.getActivity(this, 0, updateIntent, 0);
- notification.contentIntent = pendingIntent;
- notificationManager.notify(notification_id, notification);
- }
接著我們要看createThread方法
- /***
- * 開執行緒下載
- */
- public void createThread() {
- /***
- * 更新UI
- */
- final Handler handler = new Handler() {
- @Override
- public void handleMessage(Message msg) {
- switch (msg.what) {
- case DOWN_OK:
- // 下載完成,點選安裝
- Uri uri = Uri.fromFile(FileUtil.updateFile);
- Intent intent = new Intent(Intent.ACTION_VIEW);
- intent.setDataAndType(uri,
- "application/vnd.android.package-archive");
- pendingIntent = PendingIntent.getActivity(
- UpdateService.this, 0, intent, 0);
- notification.setLatestEventInfo(UpdateService.this,
- app_name, "下載成功,點選安裝", pendingIntent);
- notificationManager.notify(notification_id, notification);
- stopSelf();
- break;
- case DOWN_ERROR:
- notification.setLatestEventInfo(UpdateService.this,
- app_name, "下載失敗", pendingIntent);
- break;
- default:
- stopSelf();
- break;
- }
- }
- };
- final Message message = new Message();
- new Thread(new Runnable() {
- @Override
- public void run() {
- try {
- long downloadSize = downloadUpdateFile(down_url,
- FileUtil.updateFile.toString());
- if (downloadSize > 0) {
- // 下載成功
- message.what = DOWN_OK;
- handler.sendMessage(message);
- }
- } catch (Exception e) {
- e.printStackTrace();
- message.what = DOWN_ERROR;
- handler.sendMessage(message);
- }
- }
- }).start();
- }
下面我們開啟了執行緒進行下載資料。
我們接著看downloadUpdateFile這個方法:
- /***
- * 下載檔案
- *
- * @return
- * @throws MalformedURLException
- */
- public long downloadUpdateFile(String down_url, String file)
- throws Exception {
- int down_step = 5;// 提示step
- int totalSize;// 檔案總大小
- int downloadCount = 0;// 已經下載好的大小
- int updateCount = 0;// 已經上傳的檔案大小
- InputStream inputStream;
- OutputStream outputStream;
- URL url = new URL(down_url);
- HttpURLConnection httpURLConnection = (HttpURLConnection) url
- .openConnection();
- httpURLConnection.setConnectTimeout(TIMEOUT);
- httpURLConnection.setReadTimeout(TIMEOUT);
- // 獲取下載檔案的size
- totalSize = httpURLConnection.getContentLength();
- if (httpURLConnection.getResponseCode() == 404) {
- throw new Exception("fail!");
- }
- inputStream = httpURLConnection.getInputStream();
- outputStream = new FileOutputStream(file, false);// 檔案存在則覆蓋掉
- byte buffer[] = new byte[1024];
- int readsize = 0;
- while ((readsize = inputStream.read(buffer)) != -1) {
- outputStream.write(buffer, 0, readsize);
- downloadCount += readsize;// 時時獲取下載到的大小
- /**
- * 每次增張5%
- */
- if (updateCount == 0
- || (downloadCount * 100 / totalSize - down_step) >= updateCount) {
- updateCount += down_step;
- // 改變通知欄
- // notification.setLatestEventInfo(this, "正在下載...", updateCount
- // + "%" + "", pendingIntent);
- contentView.setTextViewText(R.id.notificationPercent,
- updateCount + "%");
- contentView.setProgressBar(R.id.notificationProgress, 100,
- updateCount, false);
- // show_view
- notificationManager.notify(notification_id, notification);
- }
- }
- if (httpURLConnection != null) {
- httpURLConnection.disconnect();
- }
- inputStream.close();
- outputStream.close();
- return downloadCount;
- }
這裡我用別的app代替了,簡單省事,正常的話,你要對你的APP進行數字簽名.然後才可以進行升級應用.
示意圖:
提示有新版 開始升級 升級下載中 下載完畢,點選安裝
相關文章
- Maven Dependency Version:依賴版本自動升級Maven
- 禁止wordpress版本自動升級的解決方案
- Ionic實戰 自動升級APP(Android版)APPAndroid
- CentOs下手動升級node版本CentOS
- 關閉chrome自動升級的教程 chrome如何取消自動升級Chrome
- MacOS升級python版本(親測)MacPython
- 魯大師 測評 版本升級
- 號外號外!自動化測試工具AutoRunner V4.2 新版本升級預告!
- 滴滴HBase大版本滾動升級之旅
- node 版本升級
- gcc版本升級GC
- NiFi版本升級Nifi
- Flutter_Boost v0.1.5升級 Android版本FlutterAndroid
- Win10系統檢測不到更新無法升級最高版本怎麼辦Win10
- python版本升級Python
- Android客戶端apk自動檢測更新自動下載自動安裝的實現方法Android客戶端APK
- 開啟 Ubuntu 系統自動升級Ubuntu
- Android 外掛化 動態升級Android
- android資料庫如何進行版本升級?架構之資料庫框架升級Android資料庫架構框架
- Android版本升級同時Sqlite資料庫的升級及之前資料的保留AndroidSQLite資料庫
- 【版本升級】PerfDog新增多維度測試報告對比功能、iOS電量測試功能升級測試報告iOS
- [android]android自動化測試Android
- 自動增加 Android App 的版本號AndroidAPP
- 如何升級電腦windows版本 windows系統版本升級方法介紹Windows
- Win10怎麼升級版本 Win10升級版本的方法Win10
- java 自動升級sql指令碼 flyway 工具JavaSQL指令碼
- 如何開啟 Ubuntu 系統自動升級Ubuntu
- YourSQLDba版本升級總結SQL
- GitLab跨版本升級Gitlab
- Redis的跨版本升級Redis
- Homestead 升級PHP版本PHP
- Mac brew 升級 PHP版本MacPHP
- 如何升級fedora的版本
- 升級mac的PHP版本MacPHP
- centos 7 版本升級nginxCentOSNginx
- cassandra升級版本選擇
- nginx 版本升級 轉載Nginx
- Node 快速切換版本、版本回退(降級)、版本更新(升級)