android怎样调出apk安装界面

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了android怎样调出apk安装界面相关的知识,希望对你有一定的参考价值。

开发一个android应用程序,必须有的一个功能就是更新应用的版本。

那么点击更新版本的控件后,应该如何调出apk的安装界面呢?

技术分享

/**
     * 安装程序
     * 
     * @param context    上下文
     * @param file    apk的保存路径
     */
    public static void openFile(Context context, File file) {
        try {
            Intent mIntent = new Intent();
            mIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
            mIntent.setAction(android.content.Intent.ACTION_VIEW);
            mIntent.setDataAndType(Uri.fromFile(file),
                    "application/vnd.android.package-archive");

            context.startActivity(mIntent);

        } catch (Exception e) {
            e.printStackTrace();

            ToastUtils.showToast(
                    context,
                    context.getResources().getString(
                            R.string.toast_openApk_error), false);
        }

    }

 

以上是关于android怎样调出apk安装界面的主要内容,如果未能解决你的问题,请参考以下文章

Android源代码解析之(十三)-->apk安装流程

怎样给你的Android 安装文件(APK)瘦身

android6.0代码安装apk失败?!!!

RadioGroup结合RadioButton使用切换Fragment片段

android手机的APK软件用电脑下载的,怎样安装到手机上?

怎样预置Android 手机 APK