91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Android實現APP在線下載更新

發布時間:2020-09-01 22:54:06 來源:腳本之家 閱讀:656 作者:ChatHello 欄目:移動開發

前言

項目地址:UpdateAppDemo

現在的android應用app會隔一段時間發布一個新的版本,當你打開某個app,如果有最新的版本,會提醒你是否下載更新。本文利用android自帶的下載管理器DownloadManager進行下載最新版本的apk,下載完成后自動跳轉安裝。效果如下:

Android實現APP在線下載更新

第一步、檢查版本并判斷是否需要更新

通過獲取當前app版本號與服務器上的版本號進行對比,如果本地的版本號低于服務器版本號,則彈出提示框:發現新版本,是否下載更新。

/**
 * Created by Teprinciple on 2016/11/15.
 */
public class UpdateAppUtil {

  /**
   * 獲取當前apk的版本號 currentVersionCode
   * @param ctx
   * @return
   */
  public static int getAPPLocalVersion(Context ctx) {
    int currentVersionCode = 0;
    PackageManager manager = ctx.getPackageManager();
    try {
      PackageInfo info = manager.getPackageInfo(ctx.getPackageName(), 0);
      String appVersionName = info.versionName; // 版本名
      currentVersionCode = info.versionCode; // 版本號
    } catch (PackageManager.NameNotFoundException e) {
      e.printStackTrace();
    }
    return currentVersionCode;
  }

  /**
   * 獲取服務器上版本信息
   * @param context
   * @param callBack
   */
  public static void getAPPServerVersion(Context context, final VersionCallBack callBack){

    HttpUtil.getObject(Api.GETVERSION.mapClear().addBody(), VersionInfo.class, new HttpUtil.ObjectCallback() {
      @Override
      public void result(boolean b, @Nullable Object obj) {
        if (b){
            callBack.callBack((VersionInfo) obj);
        }
      }
    });
  }

  /**
   * 判斷版本號,更新APP
   * @param context
   */
  public static void updateApp(final Context context){
    getAPPServerVersion(context, new VersionCallBack() {
      @Override
      public void callBack(final VersionInfo info) {
        if (info != null && info.getVersionCode()!=null){

          Log.i("this","版本信息:當前"+getAPPLocalVersion(context)+",服務器:"+Integer.valueOf(info.getVersionCode()));

          if (Integer.valueOf(info.getVersionCode()) > getAPPLocalVersion(context)){
            ConfirmDialog dialog = new ConfirmDialog(context, new lht.wangtong.gowin120.doctor.views.feature.Callback() {
              @Override
              public void callback() {
                DownloadAppUtils.downloadForAutoInstall(context, Api.HOST_IMG+info.getLoadPath(), "demo.apk", "更新demo");
              }
            });
            dialog .setContent("發現新版本:"+info.getVersionNumber()+"\n是否下載更新?");
            dialog.setCancelable(false);
            dialog .show();
          }
        }
      }
    });
  }

  public interface VersionCallBack{
    void callBack(VersionInfo info);
  }

}

第二步、下載最新版apk

通過Android自帶的DownloadManager下載管理器,下載服務器上最新版的apk。下載完成后會發送下載完成的廣播。

/**
 * Created by Teprinciple on 2016/11/15.
 */
public class DownloadAppUtils {
  private static final String TAG = DownloadAppUtils.class.getSimpleName();
  public static long downloadUpdateApkId = -1;//下載更新Apk 下載任務對應的Id
  public static String downloadUpdateApkFilePath;//下載更新Apk 文件路徑

  /**
   * 通過瀏覽器下載APK包
   * @param context
   * @param url
   */
  public static void downloadForWebView(Context context, String url) {
    Uri uri = Uri.parse(url);
    Intent intent = new Intent(Intent.ACTION_VIEW, uri);
    intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
    intent.setDataAndType(Uri.fromFile(new File(Environment
            .getExternalStorageDirectory(), "tmp.apk")),
        "application/vnd.android.package-archive");
    context.startActivity(intent);
  }


  /**
   * 下載更新apk包
   * 權限:1,<uses-permission android:name="android.permission.DOWNLOAD_WITHOUT_NOTIFICATION" />
   * @param context
   * @param url
   */
  public static void downloadForAutoInstall(Context context, String url, String fileName, String title) {
    //LogUtil.e("App 下載 url="+url+",fileName="+fileName+",title="+title);
    if (TextUtils.isEmpty(url)) {
      return;
    }
    try {
      Uri uri = Uri.parse(url);
      DownloadManager downloadManager = (DownloadManager) context
          .getSystemService(Context.DOWNLOAD_SERVICE);
      DownloadManager.Request request = new DownloadManager.Request(uri);
      //在通知欄中顯示
      request.setVisibleInDownloadsUi(true);
      request.setTitle(title);
      String filePath = null;
      if (Environment.getExternalStorageState().equals(Environment.MEDIA_MOUNTED)) {//外部存儲卡
        filePath = Environment.getExternalStorageDirectory().getAbsolutePath();

      } else {
        T.showShort(context, R.string.download_sdcard_error);
        return;
      }
      downloadUpdateApkFilePath = filePath + File.separator + fileName;
      // 若存在,則刪除
      deleteFile(downloadUpdateApkFilePath);
      Uri fileUri = Uri.parse("file://" + downloadUpdateApkFilePath);
      request.setDestinationUri(fileUri);
      downloadUpdateApkId = downloadManager.enqueue(request);
    } catch (Exception e) {
      e.printStackTrace();
      downloadForWebView(context, url);
    }
  }


  private static boolean deleteFile(String fileStr) {
    File file = new File(fileStr);
    return file.delete();
  }
}

注意添加權限:

<uses-permission android:name="android.permission.DOWNLOAD_WITHOUT_NOTIFICATION" />

第三步、下載完成后跳轉安裝

通過廣播接收者,接收到下載完成后發出的廣播,跳轉到系統的安裝界面,進行安裝。

/**
 * Created by Teprinciple on 2016/11/15.
 */
public class UpdateAppReceiver extends BroadcastReceiver {
  public UpdateAppReceiver() {
  }

  @Override
  public void onReceive(Context context, Intent intent) {
    // 處理下載完成
    Cursor c=null;
    try {
      if (DownloadManager.ACTION_DOWNLOAD_COMPLETE.equals(intent.getAction())) {
        if (DownloadAppUtils.downloadUpdateApkId >= 0) {
          long downloadId = DownloadAppUtils.downloadUpdateApkId;
          DownloadManager.Query query = new DownloadManager.Query();
          query.setFilterById(downloadId);
          DownloadManager downloadManager = (DownloadManager) context
              .getSystemService(Context.DOWNLOAD_SERVICE);
          c = downloadManager.query(query);
          if (c.moveToFirst()) {
            int status = c.getInt(c
                .getColumnIndex(DownloadManager.COLUMN_STATUS));
            if (status == DownloadManager.STATUS_FAILED) {
              downloadManager.remove(downloadId);

            } else if (status == DownloadManager.STATUS_SUCCESSFUL) {
              if (DownloadAppUtils.downloadUpdateApkFilePath != null) {
                Intent i = new Intent(Intent.ACTION_VIEW);
                i.setDataAndType(
                    Uri.parse("file://"
                        + DownloadAppUtils.downloadUpdateApkFilePath),
                    "application/vnd.android.package-archive");
                i.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
                context.startActivity(i);
              }
            }
          }
        }
      }/* else if (DownloadManager.ACTION_NOTIFICATION_CLICKED.equals(intent.getAction())) {//點擊通知取消下載
        DownloadManager downloadManager = (DownloadManager) context
            .getSystemService(Context.DOWNLOAD_SERVICE);
        long[] ids = intent.getLongArrayExtra(DownloadManager.EXTRA_NOTIFICATION_CLICK_DOWNLOAD_IDS);
        //點擊通知欄取消下載
        downloadManager.remove(ids);
      }*/

    } catch (Exception e) {
      e.printStackTrace();
    }finally {
      if (c != null) {
        c.close();
      }
    }
  }
}

注意需要在AndroidMainfest.xml中注冊receiver:

<receiver android:name=".updateapp.UpdateAppReceiver"
      android:enabled="true"
      android:exported="true">
      <intent-filter>
        <action android:name="android.intent.action.DOWNLOAD_COMPLETE" />
        <action android:name="android.intent.action.DOWNLOAD_NOTIFICATION_CLICKED"/>
      </intent-filter>
</receiver>

通過上面三步就可以快速實現APP的在線更新 。

項目地址:UpdateAppDemo

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

兴和县| 农安县| 铁力市| 万州区| 都匀市| 钦州市| 五常市| 旬邑县| 南城县| 略阳县| 辽中县| 蕲春县| 河西区| 利川市| 永福县| 镇远县| 都兰县| 赞皇县| 汤原县| 含山县| 柞水县| 鹤庆县| 丹棱县| 安龙县| 化州市| 武宁县| 安吉县| 定兴县| 城步| 石棉县| 新蔡县| 南澳县| 胶南市| 淮安市| 堆龙德庆县| 怀集县| 调兵山市| 乌兰县| 巴彦县| 通江县| 尉犁县|