博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
每次打开应用时检查更新
阅读量:6505 次
发布时间:2019-06-24

本文共 3150 字,大约阅读时间需要 10 分钟。

hot3.png

public class Test extends Activity {    private Handler mHandler;    @Override    public void onCreate(Bundle savedInstanceState) {        super.onCreate(savedInstanceState);        setContentView(R.layout.front);        mHandler = new Handler();                /** 获取最后一次更新时间并保存到 Preferences 中 **/        SharedPreferences prefs = getPreferences(0);        lastUpdateTime =  prefs.getLong("lastUpdateTime", 0);                /** 查检是否更新 **/        if ((lastUpdateTime + (24 * 60 * 60 * 1000)) < System.currentTimeMillis()) {            /** 保存时间以便下次更新**/            lastUpdateTime = System.currentTimeMillis();                        SharedPreferences.Editor editor = getPreferences(0).edit();            editor.putLong("lastUpdateTime", lastUpdateTime);            editor.commit();                    /** 开始更新 **/                        checkUpdate.start();        }    }        /** 该线程在后台检查更新 **/    private Thread checkUpdate = new Thread() {        public void run() {            try {                URL updateURL = new URL("http://my.company.com/update");                                URLConnection conn = updateURL.openConnection();                 InputStream is = conn.getInputStream();                BufferedInputStream bis = new BufferedInputStream(is);                ByteArrayBuffer baf = new ByteArrayBuffer(50);                                int current = 0;                while((current = bis.read()) != -1){                     baf.append((byte)current);                }                /** 读取的字节转换为字符串. **/ final String s = new String(baf.toByteArray());                                         /** 获取当前版本号 **/                int curVersion = getPackageManager().getPackageInfo("your.app.id", 0).versionCode;                int newVersion = Integer.valueOf(s);                                /** 对比版本号? **/                if (newVersion > curVersion) {                    /** 显示更新 **/                    mHandler.post(showUpdate);                }                            } catch (Exception e) {            }        }    };    /** 该线打开市场下载应用 **/     private Runnable showUpdate = new Runnable(){           public void run(){            new AlertDialog.Builder(Test.this)            .setIcon(R.drawable.icon)            .setTitle("Update Available")            .setMessage("An update for is available!\\n\\nOpen Android Market and see the details?")            .setPositiveButton("Yes", new DialogInterface.OnClickListener() {                    public void onClick(DialogInterface dialog, int whichButton) {                            /** User clicked OK so do some stuff **/                            Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("market://search?q=pname:your.app.id"));                            startActivity(intent);                    }            })            .setNegativeButton("No", new DialogInterface.OnClickListener() {                    public void onClick(DialogInterface dialog, int whichButton) {                            /** User clicked Cancel **/                    }            })            .show();           }    };    }

转载于:https://my.oschina.net/oppo4545/blog/195224

你可能感兴趣的文章
变量(1)
查看>>
设计模式 博客
查看>>
Java DecimalFormat 格式化数字
查看>>
使用mysqldump导入导出含BOLB数据的表
查看>>
忘记cacti密码的解决方法
查看>>
如何进入电量显示界面
查看>>
git patch
查看>>
Hyper-V虚拟化测试-博文地址汇总-更新中...
查看>>
自学的IT程序员通常缺少哪些技能
查看>>
grub的简单应用与配置
查看>>
文本编辑器Sublime Text3
查看>>
Oracle 之安装
查看>>
移动开发技术新趋向(一)
查看>>
Unity post processing stack(v1版本)脚本控制
查看>>
数据结构基本算法java实现
查看>>
InnoDB undo log原理之事务提交时undo page相关操作
查看>>
我的友情链接
查看>>
bug给你带来的四个好处
查看>>
Ubuntu12.04开机自动挂载windows分区
查看>>
Linux基础管理——sed(文本处理三剑客)
查看>>