Activity和广播

/**
下载APK细节
1、点击升级后对话框不消失,再次点击时不能重复下载
2、下载过程中退出APP,下次进入应用后要重新下载(因为可能不完整)
3、下载过程中退出APP(或下载完成后退出),如果APK已经下载完毕,则下次进入应用后不再下载
4、如果下载的APK被清除了,要重新下载
5、断网后重新连接或切换网络后不受影响
 */
public class MainActivity extends Activity {
    private TextView textView;
    private DownloadCompleteReceiver receiver = null;
    private String url = "http://113.107.216.43/imtt.dd.qq.com/16891/BD5BA98958C0FEC9D88FB65BF5534A3B.apk?mkey=581c007d0e1baac8&f=8a5d&c=0&fsname=com.bcb_2.0.2_52.apk&csr=4d5s&p=.apk";
    private String fileName;
    private AlertDialog dialog;
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        textView = new TextView(this);
        setContentView(textView);
        fileName = "福利金融-" + Utiles.getVersionCode(this) + ".apk";
        textView.setText("文件名:" + fileName //
                + "\n文件路径:" + Utiles.getApkFile(fileName).getPath() //
                + "\n是否已下载过此版本的安装包:" + Utiles.getIsDownloaded(this, fileName)//
                + "\n是否已下载时退出了:" + Utiles.getIsFinishedWhenDownloading(this));
        showVersionDialog();
    }
    private void showVersionDialog() {
        AlertDialog.Builder ibuilder = new AlertDialog.Builder(this);
        ibuilder.setTitle("版本更新啦!");
        ibuilder.setMessage("优化用户界面,界面更好看\n修复所有已经的bug");
        ibuilder.setNegativeButton("退出应用", new DialogInterface.OnClickListener() {
            @Override
            public void onClick(DialogInterface dialog, int which) {
                dialog.dismiss();
                dialog = null;
                finish();
            }
        });
        ibuilder.setPositiveButton("立即更新", new DialogInterface.OnClickListener() {
            @Override
            public void onClick(DialogInterface dialog, int which) {
                File file = Utiles.getApkFile(fileName);
                if (Utiles.getIsDownloaded(MainActivity.this, fileName)) {//已下载完毕
                    if (file == null || !file.exists()) {
                        Utiles.clearSP(MainActivity.this);//清空保存的两个数据
                        registerReceiver();//被删了,重新下载
                    } else Utiles.installApk(MainActivity.this, file);//否则,安装
                } else if (Utiles.getIsFinishedWhenDownloading(MainActivity.this)) {//上次在下载过程中退出了,下次进入应用时重新下载
                    registerReceiver();//重新下载
                } else if (file != null && file.exists()) {//正在下载
                    Toast.makeText(MainActivity.this, "正在下载,请稍后", Toast.LENGTH_SHORT).show();
                } else {//没下载过
                    registerReceiver();
                }
            }
        });
        dialog = ibuilder.create();
        dialog.setCanceledOnTouchOutside(false);
        dialog.setCancelable(false);
        dialog.show();
    }
    private void registerReceiver() {
        receiver = new DownloadCompleteReceiver();
        IntentFilter intentFilter = new IntentFilter();
        intentFilter.addAction(DownloadManager.ACTION_DOWNLOAD_COMPLETE);//下载完成的动作
        registerReceiver(receiver, intentFilter);
        Utiles.downLoadFile(MainActivity.this, url, fileName);//开始下载
    }
    class DownloadCompleteReceiver extends BroadcastReceiver {
        @Override
        public void onReceive(Context context, Intent intent) {
            if (intent.getAction().equals(DownloadManager.ACTION_DOWNLOAD_COMPLETE)) {
                Toast.makeText(MainActivity.this, "下载完毕", Toast.LENGTH_SHORT).show();
                textView.append("下载完毕");
                Utiles.saveIsDownloaded(context, fileName);
                Utiles.installApk(context, Utiles.getApkFile(fileName));
                if (receiver != null) {
                    unregisterReceiver(receiver);
                    receiver = null;
                }
            }
        }
    }
    @Override
    protected void onDestroy() {
        super.onDestroy();
        if (receiver != null) {//如果receiver不为空,说明正在下载APK包,即使应用退出了,也会继续下载
            unregisterReceiver(receiver);
            Utiles.saveIsFinishedWhenDownloading(this);//如果在下载过程中退出了,下次进入应用时重新下载
        }
    }
}

工具

public class Utiles {
    public static final String SP_NAME = "version";
    public static final String FILE_PATH = "/fljr/apk";
    /**返回下载的APK文件*/
    public static File getApkFile(String fileName) {
        String filePath = Environment.getExternalStorageDirectory().getPath() + FILE_PATH + File.separator + fileName;
        return new File(filePath);
    }
    /**安装指定的APK包*/
    public static void installApk(Context context, File apkFile) {
        Intent mIntent = new Intent(Intent.ACTION_VIEW);
        mIntent.setDataAndType(Uri.fromFile(apkFile), "application/vnd.android.package-archive");
        mIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
        context.startActivity(mIntent);
    }
    /**获取VersionCode*/
    public static int getVersionCode(Context context) {
        try {
            PackageInfo packageInfo = context.getPackageManager().getPackageInfo(context.getPackageName(), 0);
            return packageInfo.versionCode;
        } catch (PackageManager.NameNotFoundException e) {
            e.printStackTrace();
            return 0;
        }
    }
     /**清空SP的数据*/
    public static void clearSP(Context context) {
        SharedPreferences.Editor editor = context.getSharedPreferences(SP_NAME, 0).edit();
        editor.clear();
        editor.commit();
    }
    //******************************************************************************************
    /**记录是否在下载过程中退出了,如果在下载过程中退出了,下次进入应用时重新下载*/
    public static void saveIsFinishedWhenDownloading(Context context) {
        SharedPreferences.Editor editor = context.getSharedPreferences(SP_NAME, 0).edit();
        editor.putBoolean("finish", true);
        editor.commit();
    }
    /**是否在下载过程中退出了*/
    public static boolean getIsFinishedWhenDownloading(Context context) {
        return context.getSharedPreferences(SP_NAME, 0).getBoolean("finish", false);
    }
    //******************************************************************************************
    /**记录是否已下载过指定版本的APK包*/
    public static void saveIsDownloaded(Context context, String fileName) {
        SharedPreferences.Editor editor = context.getSharedPreferences(SP_NAME, 0).edit();
        editor.putBoolean(fileName, true);
        editor.commit();
    }
    /**查看是否已下载过指定版本的APK包*/
    public static boolean getIsDownloaded(Context context, String fileName) {
        return context.getSharedPreferences(SP_NAME, 0).getBoolean(fileName, false);
    }
    /**下载文件*/
    public static void downLoadFile(Context mContext, String url, String fileName) {
        DownloadManager.Request request = new DownloadManager.Request(Uri.parse(url))//下载路径
                .setNotificationVisibility(DownloadManager.Request.VISIBILITY_VISIBLE)//显示方式。默认,下载过程中显示,下载完成后自动消失
                .setAllowedNetworkTypes(DownloadManager.Request.NETWORK_WIFI | DownloadManager.Request.NETWORK_MOBILE)//网络设置
                .setDestinationInExternalPublicDir(FILE_PATH, fileName);//文件下载路径
        ((DownloadManager) mContext.getSystemService(Context.DOWNLOAD_SERVICE)).enqueue(request);
    }
}

提升升级 强制更新 Download的更多相关文章

  1. iOS开发笔记10:圆点缩放动画、强制更新、远程推送加语音提醒及UIView截屏

    1.使用CAReplicatorLayer制作等待动画 CALayer+CABasicAnimation可以制作很多简单的动画效果,之前的博客中介绍的“两个动画”,一个是利用一张渐变色图片+CABas ...

  2. 微信小程序热更新,小程序提示版本更新,版本迭代,强制更新,微信小程序版本迭代

    相信很多人在做小程序的时候都会有迭代每当版本迭代的时候之前老版本的一些方法或者显示就不够用了这就需要用到小程序的热更新.或者说是提示升级小程序版本 editionUpdate:function(){ ...

  3. Atitit.提升 升级类库框架后的api代码兼容性设计指南

    Atitit.提升 升级类库框架后的api代码兼容性设计指南 1. 增加api直接增加,版本号在注释上面增加1 2. 废弃api,使用主见@dep1 3. 修改api,1 4. 修改依赖import, ...

  4. WPF强制更新

    ,更新的时候选择最小版本号,就是强制更新

  5. maven缺少依赖包,强制更新命令

    mvn clean install -e -U -e详细异常,-U强制更新

  6. git 本地代码冲突解决,强制更新

    git reset soft,hard,mixed之区别深解 git reset --hard  强制更新覆盖本地   GIT reset命令,似乎让人很迷惑,以至于误解,误用.但是事实上不应该如此难 ...

  7. iOS实现应用更新及强制更新

    调用更新接口返回字段: result =     {             descr = "";             isupdate = 1;//是否更新         ...

  8. Maven项目强制更新,解决Failed to read artifact descriptor for xxx.jar问题

    导入的maven项目pom.xml现红叉 分析原因:在maven本地仓库中找不到相应的jar包. 解决方案:让maven强制更新依赖. 项目右击菜单,Maven -> Update Projec ...

  9. Git强制更新本地库和冲突解决

    1.You have not concluded your merge. (MERGE_HEAD exists) 本地有修改和提交,如何强制用远程的库更新.出现这种情况一般是git本地有commit, ...

随机推荐

  1. jQuery 自动完成文本框

    jQuery自动完成插件开源软件 http://www.oschina.net/project/tag/329/jquery-autocomplete jQuery TextExt http://te ...

  2. plot的实践。

    from matplotlib import pyplot as plt data = np.loadtxt(r'C:\Users\yinggang\Desktop\1\a.txt') x,y,z = ...

  3. Python 基础-python函数

    函数    1.def    2.命名    3.函数体    4.return 返回值 def get_return(): a = 1 return a 函数参数有 形参和实参    定义几个形参就 ...

  4. Sequoyah 本机开发Native Development: Invalid path for NDK(路径无效) 解决方案

    打开window菜单下的preference选项.选择Android,Native Development(本地开发) 选择你的NDK安装目录. 但是,这个插件目前仅支持ndk的r4和r5版本,更高版 ...

  5. 得到指定进程PID

    //#include "targetver.h" #include "stdio.h" #include <windows.h> #include ...

  6. hadoop各版本下载

    http://hadoop.apache.org/ Download Hadoop from the release page. http://hadoop.apache.org/releases.h ...

  7. BZOJ 1143 祭祀

    Description 在遥远的东方,有一个神秘的民族,自称Y族.他们世代居住在水面上,奉龙王为神.每逢重大庆典, Y族都会在水面上举办盛大的祭祀活动.我们可以把Y族居住地水系看成一个由岔口和河道组成 ...

  8. Webpack 傻瓜式指南(一)

    modules with dependencies   webpack   module bundler   static  assetss   .js .js .png Webpack傻瓜式指南 n ...

  9. Linux负载均衡软件LVS之一(概念篇)

    一. LVS简介 LVS是Linux Virtual Server的简称,也就是Linux虚拟服务器, 是一个由章文嵩博士发起的自由软件项目,它的官方站点是www.linuxvirtualserver ...

  10. Sumdiv(各种数学)

    http://poj.org/problem?id=1845 题意:求A^B的所有约数的和再对9901取模: 做了这个学到了N多数学知识: 一:任意一个整数都可以唯一分解成素因子的乘积:A = p1^ ...