Android實(shí)現(xiàn)APP在線下載更新
前言
項(xiàng)目地址:UpdateAppDemo
現(xiàn)在的android應(yīng)用app會(huì)隔一段時(shí)間發(fā)布一個(gè)新的版本,當(dāng)你打開某個(gè)app,如果有最新的版本,會(huì)提醒你是否下載更新。本文利用android自帶的下載管理器DownloadManager進(jìn)行下載最新版本的apk,下載完成后自動(dòng)跳轉(zhuǎn)安裝。效果如下:

第一步、檢查版本并判斷是否需要更新
通過獲取當(dāng)前app版本號(hào)與服務(wù)器上的版本號(hào)進(jìn)行對(duì)比,如果本地的版本號(hào)低于服務(wù)器版本號(hào),則彈出提示框:發(fā)現(xiàn)新版本,是否下載更新。
/**
* Created by Teprinciple on 2016/11/15.
*/
public class UpdateAppUtil {
/**
* 獲取當(dāng)前apk的版本號(hào) currentVersionCode
* @param ctx
* @return
*/
public static int getAPPLocalVersion(Context ctx) {
int currentVersionCode = 0;
PackageManager manager = ctx.getPackageManager();
try {
PackageInfo info = manager.getPackageInfo(ctx.getPackageName(), 0);
String appVersionName = info.versionName; // 版本名
currentVersionCode = info.versionCode; // 版本號(hào)
} catch (PackageManager.NameNotFoundException e) {
e.printStackTrace();
}
return currentVersionCode;
}
/**
* 獲取服務(wù)器上版本信息
* @param context
* @param callBack
*/
public static void getAPPServerVersion(Context context, final VersionCallBack callBack){
HttpUtil.getObject(Api.GETVERSION.mapClear().addBody(), VersionInfo.class, new HttpUtil.ObjectCallback() {
@Override
public void result(boolean b, @Nullable Object obj) {
if (b){
callBack.callBack((VersionInfo) obj);
}
}
});
}
/**
* 判斷版本號(hào),更新APP
* @param context
*/
public static void updateApp(final Context context){
getAPPServerVersion(context, new VersionCallBack() {
@Override
public void callBack(final VersionInfo info) {
if (info != null && info.getVersionCode()!=null){
Log.i("this","版本信息:當(dāng)前"+getAPPLocalVersion(context)+",服務(wù)器:"+Integer.valueOf(info.getVersionCode()));
if (Integer.valueOf(info.getVersionCode()) > getAPPLocalVersion(context)){
ConfirmDialog dialog = new ConfirmDialog(context, new lht.wangtong.gowin120.doctor.views.feature.Callback() {
@Override
public void callback() {
DownloadAppUtils.downloadForAutoInstall(context, Api.HOST_IMG+info.getLoadPath(), "demo.apk", "更新demo");
}
});
dialog .setContent("發(fā)現(xiàn)新版本:"+info.getVersionNumber()+"\n是否下載更新?");
dialog.setCancelable(false);
dialog .show();
}
}
}
});
}
public interface VersionCallBack{
void callBack(VersionInfo info);
}
}
第二步、下載最新版apk
通過Android自帶的DownloadManager下載管理器,下載服務(wù)器上最新版的apk。下載完成后會(huì)發(fā)送下載完成的廣播。
/**
* Created by Teprinciple on 2016/11/15.
*/
public class DownloadAppUtils {
private static final String TAG = DownloadAppUtils.class.getSimpleName();
public static long downloadUpdateApkId = -1;//下載更新Apk 下載任務(wù)對(duì)應(yīng)的Id
public static String downloadUpdateApkFilePath;//下載更新Apk 文件路徑
/**
* 通過瀏覽器下載APK包
* @param context
* @param url
*/
public static void downloadForWebView(Context context, String url) {
Uri uri = Uri.parse(url);
Intent intent = new Intent(Intent.ACTION_VIEW, uri);
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
intent.setDataAndType(Uri.fromFile(new File(Environment
.getExternalStorageDirectory(), "tmp.apk")),
"application/vnd.android.package-archive");
context.startActivity(intent);
}
/**
* 下載更新apk包
* 權(quán)限:1,<uses-permission android:name="android.permission.DOWNLOAD_WITHOUT_NOTIFICATION" />
* @param context
* @param url
*/
public static void downloadForAutoInstall(Context context, String url, String fileName, String title) {
//LogUtil.e("App 下載 url="+url+",fileName="+fileName+",title="+title);
if (TextUtils.isEmpty(url)) {
return;
}
try {
Uri uri = Uri.parse(url);
DownloadManager downloadManager = (DownloadManager) context
.getSystemService(Context.DOWNLOAD_SERVICE);
DownloadManager.Request request = new DownloadManager.Request(uri);
//在通知欄中顯示
request.setVisibleInDownloadsUi(true);
request.setTitle(title);
String filePath = null;
if (Environment.getExternalStorageState().equals(Environment.MEDIA_MOUNTED)) {//外部存儲(chǔ)卡
filePath = Environment.getExternalStorageDirectory().getAbsolutePath();
} else {
T.showShort(context, R.string.download_sdcard_error);
return;
}
downloadUpdateApkFilePath = filePath + File.separator + fileName;
// 若存在,則刪除
deleteFile(downloadUpdateApkFilePath);
Uri fileUri = Uri.parse("file://" + downloadUpdateApkFilePath);
request.setDestinationUri(fileUri);
downloadUpdateApkId = downloadManager.enqueue(request);
} catch (Exception e) {
e.printStackTrace();
downloadForWebView(context, url);
}
}
private static boolean deleteFile(String fileStr) {
File file = new File(fileStr);
return file.delete();
}
}
注意添加權(quán)限:
<uses-permission android:name="android.permission.DOWNLOAD_WITHOUT_NOTIFICATION" />
第三步、下載完成后跳轉(zhuǎn)安裝
通過廣播接收者,接收到下載完成后發(fā)出的廣播,跳轉(zhuǎn)到系統(tǒng)的安裝界面,進(jìn)行安裝。
/**
* Created by Teprinciple on 2016/11/15.
*/
public class UpdateAppReceiver extends BroadcastReceiver {
public UpdateAppReceiver() {
}
@Override
public void onReceive(Context context, Intent intent) {
// 處理下載完成
Cursor c=null;
try {
if (DownloadManager.ACTION_DOWNLOAD_COMPLETE.equals(intent.getAction())) {
if (DownloadAppUtils.downloadUpdateApkId >= 0) {
long downloadId = DownloadAppUtils.downloadUpdateApkId;
DownloadManager.Query query = new DownloadManager.Query();
query.setFilterById(downloadId);
DownloadManager downloadManager = (DownloadManager) context
.getSystemService(Context.DOWNLOAD_SERVICE);
c = downloadManager.query(query);
if (c.moveToFirst()) {
int status = c.getInt(c
.getColumnIndex(DownloadManager.COLUMN_STATUS));
if (status == DownloadManager.STATUS_FAILED) {
downloadManager.remove(downloadId);
} else if (status == DownloadManager.STATUS_SUCCESSFUL) {
if (DownloadAppUtils.downloadUpdateApkFilePath != null) {
Intent i = new Intent(Intent.ACTION_VIEW);
i.setDataAndType(
Uri.parse("file://"
+ DownloadAppUtils.downloadUpdateApkFilePath),
"application/vnd.android.package-archive");
i.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
context.startActivity(i);
}
}
}
}
}/* else if (DownloadManager.ACTION_NOTIFICATION_CLICKED.equals(intent.getAction())) {//點(diǎn)擊通知取消下載
DownloadManager downloadManager = (DownloadManager) context
.getSystemService(Context.DOWNLOAD_SERVICE);
long[] ids = intent.getLongArrayExtra(DownloadManager.EXTRA_NOTIFICATION_CLICK_DOWNLOAD_IDS);
//點(diǎn)擊通知欄取消下載
downloadManager.remove(ids);
}*/
} catch (Exception e) {
e.printStackTrace();
}finally {
if (c != null) {
c.close();
}
}
}
}
注意需要在AndroidMainfest.xml中注冊(cè)receiver:
<receiver android:name=".updateapp.UpdateAppReceiver"
android:enabled="true"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.DOWNLOAD_COMPLETE" />
<action android:name="android.intent.action.DOWNLOAD_NOTIFICATION_CLICKED"/>
</intent-filter>
</receiver>
通過上面三步就可以快速實(shí)現(xiàn)APP的在線更新 。
項(xiàng)目地址:UpdateAppDemo
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
- 基于Retrofit2+RxJava2實(shí)現(xiàn)Android App自動(dòng)更新
- android中強(qiáng)制更新app實(shí)例代碼
- Android實(shí)現(xiàn)簡(jiǎn)潔的APP更新dialog數(shù)字進(jìn)度條
- Android應(yīng)用App更新實(shí)例詳解
- Android應(yīng)用APP自動(dòng)更新功能的代碼實(shí)現(xiàn)
- Android App增量更新詳解及實(shí)例代碼
- Android如何實(shí)現(xiàn)APP自動(dòng)更新
- Android App實(shí)現(xiàn)應(yīng)用內(nèi)部自動(dòng)更新的最基本方法示例
- android實(shí)現(xiàn)通知欄下載更新app示例
- Android實(shí)現(xiàn)APP自動(dòng)更新功能
相關(guān)文章
android之BroadcastReceiver應(yīng)用詳解
這篇文章主要介紹了android之BroadcastReceiver應(yīng)用詳解,BroadcastReceiver也就是“廣播接收者”的意思,顧名思義,它就是用來(lái)接收來(lái)自系統(tǒng)和應(yīng)用中的廣播。有興趣的可以了解一下。2016-12-12
Android 動(dòng)態(tài)添加Fragment的實(shí)例代碼
這篇文章主要介紹了Android 動(dòng)態(tài)添加Fragment的實(shí)例代碼的相關(guān)資料,非常不錯(cuò),具有參考借鑒價(jià)值,需要的朋友可以參考下2016-08-08
android 震動(dòng)和提示音的實(shí)現(xiàn)代碼
這篇文章主要介紹了android 震動(dòng)和提示音的實(shí)現(xiàn)代碼,代碼簡(jiǎn)單易懂,非常不錯(cuò),具有一定的參考借鑒價(jià)值,需要的朋友可以參考下2019-12-12
react native android6+拍照閃退或重啟的解決方案
android 6+權(quán)限使用的時(shí)候需要?jiǎng)討B(tài)申請(qǐng),那么在使用rn的時(shí)候要怎么處理拍照權(quán)限問題呢?本文提供的是一攬子rn操作相冊(cè)、拍照的解決方案,需要的朋友可以參考下2017-11-11
Android通過aapt命令獲取apk詳細(xì)信息(包括:文件包名,版本號(hào),SDK等信息)
本文給大家分享android通過aapt命令獲取apk詳細(xì)信息(包括:文件包名,版本號(hào),SDK等信息),非常不錯(cuò),簡(jiǎn)單實(shí)用,對(duì)android sdk aapt知識(shí)感興趣的朋友一起通過本文學(xué)習(xí)吧2016-11-11
Android SoundPool實(shí)現(xiàn)簡(jiǎn)短小音效
這篇文章主要為大家詳細(xì)介紹了Android SoundPool實(shí)現(xiàn)簡(jiǎn)短小音效,文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2019-11-11
Android ListView添加頭布局和腳布局實(shí)例詳解
這篇文章主要介紹了Android ListView添加頭布局和腳布局實(shí)例詳解的相關(guān)資料,大家看下效果是否是自己想要實(shí)現(xiàn)的效果,這里附了實(shí)現(xiàn)代碼和實(shí)現(xiàn)效果圖,需要的朋友可以參考下2016-11-11
Android應(yīng)用開發(fā)中Fragment間通信的實(shí)現(xiàn)教程
這篇文章主要介紹了Android應(yīng)用開發(fā)中Fragment間通信的實(shí)現(xiàn)教程,包括接口的定義實(shí)現(xiàn)與Fragment通信的動(dòng)靜態(tài)加載等,需要的朋友可以參考下2016-02-02
Android編程實(shí)現(xiàn)在Activity中操作刷新另外一個(gè)Activity數(shù)據(jù)列表的方法
這篇文章主要介紹了Android編程實(shí)現(xiàn)在Activity中操作刷新另外一個(gè)Activity數(shù)據(jù)列表的方法,結(jié)合具體實(shí)例形式分析了2種常用的Activity交互實(shí)現(xiàn)技巧,需要的朋友可以參考下2017-06-06
Android自定義Camera實(shí)現(xiàn)拍照小功能
這篇文章主要為大家詳細(xì)介紹了Android自定義Camera實(shí)現(xiàn)拍照小功能,文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2022-05-05

