Android安装apk文件之后不弹出安装完成的界面的解决方法

    xiaoxiao2021-03-25  198

    Intent intent = new Intent(Intent.ACTION_VIEW);    

     intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);  

    intent.setDataAndType(Uri.fromFile(new File(fileUrl)),  

     "application/vnd.Android.package-archive");    

    mContext.startActivity(intent); 

    注意红色的部分,要给一个新的任务栈才可以

    转载请注明原文地址: https://ju.6miu.com/read-2147.html

    最新回复(0)