android软件更新方法初探

已知一个更新包的地址:类似 “http:.../ name.apk”

 

下载更新方法:

1.去服务器判断当前是否有新的版本。

返回状态:无新版本,有新版本,强制更新。

返回地址:URL 或 一个文件。

 

2. 下载安装

对于URL结果。可用的安装方法:

2.1 利用浏览器下载。

Uri uri = Uri.parse(url);

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

 context.startActivity(intent)

注释:这种方法直接调用浏览器下载。 需要注意的是浏览器可以点击不安装,这时程序的状态需要注意。

 

对于文件结果。可用的安装方法:

2.3

 String fileName = Environment.getExternalStorageDirectory() + "/" + APP_NAME;

  Intent intent = new Intent(Intent.ACTION_VIEW);
  intent.setDataAndType(Uri.fromFile(new File(fileName)), "application/vnd.android.package-archive");

  startActivity(intent);
  System.exit(0);

 

2.4还有一种:没研究过具体参数

//安装APK
Uri installUri = Uri.fromParts("package", "xxx", null);
returnIt = new Intent(Intent.ACTION_PACKAGE_ADDED, installUri);

 

 

PS:注意安装的时候,安装程序会强制关闭当前程序。

 

你可能感兴趣的:(android软件更新方法初探)