Android 更新升级下载 自定义Updates 兼容版(2)

*/

public class MainActivity extends Activity {

// 地址

private String dl = “http://17shihui.cn/download/shihui.apk”;

@Override

protected void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.activity_main);

Function_Utility.setAppContext(getApplicationContext());

findViewById(R.id.button1).setOnClickListener(new OnClickListener() {

@Override

public void onClick(View v) {

Uri uri = Uri.parse(dl);

Intent intent = new Intent(Intent.ACTION_VIEW, uri);

startActivity(intent);

}

});

findViewById(R.id.button2).setOnClickListener(new OnClickListener() {

@Override

public void onClick(View v) {

try {

download(dl);

} catch (Exception e) {

e.printStackTrace();

}

}

});

}

private void download(String dl) throws Exception {

if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.GINGERBREAD) {

Intent service = new Intent(this, DownloadService.class);

service.putExtra(DownloadService.INTENT_URL, dl);

startService(service);

} else {

Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(dl));

startActivity(intent);

}

}

}

  1. 下载模块

package com.example.updataapk;

import java.io.File;

import java.io.FileOutputStream;

import java.io.InputStream;

import java.net.HttpURLConnection;

import java.net.URL;

import android.app.Notification;

import android.app.NotificationManager;

import android.app.PendingIntent;

import android.app.Service;

import android.content.Context;

import android.content.Intent;

import android.net.Uri;

import android.os.Handler;

import android.os.IBinder;

import android.os.Message;

import android.util.Log;

import android.widget.RemoteViews;

public class DownloadService extends Service {

// notification 名字

private String notify_name = “apk正在下载…”;

public static final String INTENT_URL = “url”;

private Context mContext = this;

Notification mNotification;

private static final int NOTIFY_ID = 0;

private NotificationManager mNotificationManager;

/* 下载包安装路径 */

private static final String savePath = Function_Utility.getUpgradePath();

private static final String saveFileName = savePath + “demo.apk”;

private String apkUrl;

private int progress;

boolean canceled;

private Thread downLoadThread;

@Override

public IBinder onBind(Intent intent) {

return null;

}

@Override

public void onCreate() {

super.onCreate();

mNotificationManager = (NotificationManager) getSystemService(android.content.Context.NOTIFICATION_SERVICE);

}

public int onStartCommand(Intent intent, int flags, int startId) {

Log.i(“DownloadService”, “intent=” + intent.toString() + " ; flags= " + flags + " ; startId" + startId);

if (intent.hasExtra(DownloadService.INTENT_URL)) {

apkUrl = (String) intent.getExtras().get(DownloadService.INTENT_URL);

}

progress = 0;

setUpNotification();

new Thread() {

public void run() {

// 开始下载

startDownload();

};

}.start();

return startId;

};

private void startDownload() {

canceled = false;

downloadApk();

}

private Handler mHandler = new Handler() {

@Override

public void handleMessage(Message msg) {

super.handleMessage(msg);

switch (msg.what) {

case 0:

// 下载完毕

// 取消通知

mNotificationManager.cancel(NOTIFY_ID);

installApk();

break;

case 2:

// 这里是用户界面手动取消,所以会经过activity的onDestroy();方法

// 取消通知

mNotificationManager.cancel(NOTIFY_ID);

break;

case 1:

int rate = msg.arg1;

if (rate < 100) {

RemoteViews contentview = mNotification.contentView;

contentview.setTextViewText(R.id.tv_progress, rate + “%”);

contentview.setProgressBar(R.id.progressbar, 100, rate, false);

} else {

// 下载完毕后变换通知形式

mNotification.flags = Notification.FLAG_AUTO_CANCEL;

mNotification.contentView = null;

mNotification.setLatestEventInfo(mContext, “下载完成”, “文件已下载完毕”, null);

stopSelf();// 停掉服务自身

}

PendingIntent contentIntent2 = PendingIntent.getActivity(getApplicationContext(), 0, new Intent(), PendingIntent.FLAG_UPDATE_CURRENT);

mNotification.contentIntent = contentIntent2;

mNotificationManager.notify(NOTIFY_ID, mNotification);

break;

case 3:

mNotification.flags = Notification.FLAG_AUTO_CANCEL;

RemoteViews contentView = new RemoteViews(getPackageName(), R.layout.update_download_notification_layout);

contentView.setTextViewText(R.id.name, “下载失败”);

// 指定个性化视图

mNotification.contentView = contentView;

Intent intent = new Intent(getApplicationContext(), MainActivity.class);

PendingIntent contentIntent = PendingIntent.getActivity(getApplicationContext(), 0, intent, PendingIntent.FLAG_UPDATE_CURRENT);

// 指定内容意图

mNotification.contentIntent = contentIntent;

mNotificationManager.notify(NOTIFY_ID, mNotification);

stopSelf();// 停掉服务自身

break;

}

}

};

/**

  • 安装apk

  • @param url

*/

private void installApk() {

File apkfile = new File(saveFileName);

if (!apkfile.exists()) {

return;

}

Intent i = new Intent(Intent.ACTION_VIEW);

i.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);

i.setDataAndType(Uri.parse(“file://” + apkfile.toString()), “application/vnd.android.package-archive”);

mContext.startActivity(i);

}

private int lastRate = 0;

private InputStream is = null;

private FileOutputStream fos = null;

/**

  • 下载apk

  • @param url

*/

private void downloadApk() {

downLoadThread = new Thread(mdownApkRunnable);

downLoadThread.start();

}

private Runnable mdownApkRunnable = new Runnable() {

@Override

public void run() {

try {

URL url = new URL(apkUrl);

HttpURLConnection conn = (HttpURLConnection) url.openConnection();

conn.connect();

int length = conn.getContentLength();

is = conn.getInputStream();

File file = new File(savePath);

if (!file.exists()) {

file.mkdirs();

}

String apkFile = saveFileName;

File ApkFile = new File(apkFile);

fos = new FileOutputStream(ApkFile);

int count = 0;

byte buf[] = new byte[1024];

do {

int numread = is.read(buf);

count += numread;

progress = (int) (((float) count / length) * 100);

// 更新进度

Message msg = mHandler.obtainMessage();

msg.what = 1;

msg.arg1 = progress;

if (progress >= lastRate + 1) {

mHandler.sendMessage(msg);

lastRate = progress;

}

if (numread <= 0) {

mHandler.sendEmptyMessage(0);// 下载完成通知安装

// 下载完了,cancelled也要设置

canceled = true;

break;

}

fos.write(buf, 0, numread);

} while (!canceled);// 点击取消就停止下载.

Log.i(“DownloadService----------canceled”, canceled + “”);

fos.close();

is.close();

} catch (Exception e) {

Message msg = mHandler.obtainMessage();

msg.what = 3;

mHandler.sendMessage(msg);

e.printStackTrace();

} finally {

try {

if (fos != null) {

fos.close();

}

is.close();

if (is != null) {

is.close();

}

} catch (Exception e) {

e.printStackTrace();

}

}

}

};

/**

  • 创建通知

*/

private void setUpNotification() {

总结

开发是面向对象。我们找工作应该更多是面向面试。哪怕进大厂真的只是去宁螺丝,但你要进去得先学会面试的时候造飞机不是么?

作者13年java转Android开发,在小厂待过,也去过华为,OPPO等,去年四月份进了阿里一直到现在。等大厂待过也面试过很多人。深知大多数初中级Android工程师,想要提升技能,往往是自己摸索成长,不成体系的学习效果低效漫长且无助。

这里附上上述的技术体系图相关的几十套腾讯、头条、阿里、美团等公司的面试题,把技术点整理成了视频和PDF(实际上比预期多花了不少精力),包含知识脉络 + 诸多细节,由于篇幅有限,这里以图片的形式给大家展示一部分。

相信它会给大家带来很多收获:

960页全网最全Android开发笔记

资料太多,全部展示会影响篇幅,暂时就先列举这些部分截图

当程序员容易,当一个优秀的程序员是需要不断学习的,从初级程序员到高级程序员,从初级架构师到资深架构师,或者走向管理,从技术经理到技术总监,每个阶段都需要掌握不同的能力。早早确定自己的职业方向,才能在工作和能力提升中甩开同龄人。

网上学习资料一大堆,但如果学到的知识不成体系,遇到问题时只是浅尝辄止,不再深入研究,那么很难做到真正的技术提升。

需要这份系统化学习资料的朋友,可以戳这里获取

一个人可以走的很快,但一群人才能走的更远!不论你是正从事IT行业的老鸟或是对IT行业感兴趣的新人,都欢迎加入我们的的圈子(技术交流、学习资源、职场吐槽、大厂内推、面试辅导),让我们一起学习成长!

、阿里、美团等公司的面试题**,把技术点整理成了视频和PDF(实际上比预期多花了不少精力),包含知识脉络 + 诸多细节,由于篇幅有限,这里以图片的形式给大家展示一部分。

相信它会给大家带来很多收获:

[外链图片转存中…(img-jlt5kfrh-1714323420200)]

[外链图片转存中…(img-xvtJM56u-1714323420201)]

资料太多,全部展示会影响篇幅,暂时就先列举这些部分截图

当程序员容易,当一个优秀的程序员是需要不断学习的,从初级程序员到高级程序员,从初级架构师到资深架构师,或者走向管理,从技术经理到技术总监,每个阶段都需要掌握不同的能力。早早确定自己的职业方向,才能在工作和能力提升中甩开同龄人。

网上学习资料一大堆,但如果学到的知识不成体系,遇到问题时只是浅尝辄止,不再深入研究,那么很难做到真正的技术提升。

需要这份系统化学习资料的朋友,可以戳这里获取

一个人可以走的很快,但一群人才能走的更远!不论你是正从事IT行业的老鸟或是对IT行业感兴趣的新人,都欢迎加入我们的的圈子(技术交流、学习资源、职场吐槽、大厂内推、面试辅导),让我们一起学习成长!

  • 21
    点赞
  • 14
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值