Android程序版本更新之通知栏更新下载安装
程序员文章站
2024-02-25 19:59:57
android应用检查版本更新后,在通知栏下载,更新下载进度,下载完成自动安装,效果图如下:
•检查当前版本号
androidmanifest文件中...
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是自己写的文件工具类
通知栏显示的布局,view_notify_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); }
安装完成搞定
上一篇: java实现按层遍历二叉树
推荐阅读
-
Android程序版本更新之通知栏更新下载安装
-
android 版本检测 Android程序的版本检测与更新实现介绍
-
android 版本检测 Android程序的版本检测与更新实现介绍
-
android实现通知栏下载更新app示例
-
android实现通知栏下载更新app示例
-
Android大饼修改器v2.6.3。(首次打开会提示“应用程序有新版本更新”,点击退出就. http://www.sbtools.org/forum.php?mod=viewthread&tid
-
Android大饼修改器v2.6.3。(首次打开会提示“应用程序有新版本更新”,点击退出就. http://www.sbtools.org/forum.php?mod=viewthread&tid
-
Android烧饼修改器v2.6.3。(首次打开会提示“应用程序有新版本更新”,点击退出就. http://www.sbtools.org/forum.php?mod=viewthread&tid
-
Android烧饼修改器v2.6.3。(首次打开会提示“应用程序有新版本更新”,点击退出就. http://www.sbtools.org/forum.php?mod=viewthread&tid
-
Android 8.0通知栏适配_更新Android 8.0后系统通知栏