Как управлять кнопками «принять» или «отменить» при программной установке APK? - PullRequest
1 голос
/ 09 марта 2012

У меня есть эта функция для автоматического обновления моего приложения (это нерыночное приложение), и я хочу управлять кнопкой «ОК» или «Отмена», когда я решаю принять обновление или отклонить обновление.

Вот мой код (код работает, но не управляет кнопками)

public void Update(String apkurl,String versio){
    try {
          URL url = new URL(apkurl);
          HttpURLConnection c = (HttpURLConnection) url.openConnection();
          c.setRequestMethod("GET");
          c.setDoOutput(true);
          c.connect();

          String PATH = Environment.getExternalStorageDirectory() + "/download/";
          File file = new File(PATH);
          file.mkdirs();
          File outputFile = new File(file, "app.apk");
          outputFile.delete();
          FileOutputStream fos = new FileOutputStream(outputFile);

          InputStream is = c.getInputStream();

          byte[] buffer = new byte[1024];
          int len1 = 0;
          while ((len1 = is.read(buffer)) != -1) {
              fos.write(buffer, 0, len1);
          }
          fos.close();
          is.close();//till here, it works fine - .apk is download to my sdcard in download file

          Intent intent = new Intent(Intent.ACTION_VIEW);
          intent.setDataAndType(Uri.fromFile(new File(Environment.getExternalStorageDirectory() + "/download/" + "app.apk")), "application/vnd.android.package-archive");
          startActivity(intent);  


      } catch (IOException e) {
          Toast.makeText(getApplicationContext(), "Update error!", Toast.LENGTH_LONG).show();
      }
}
...