• android 广播安装指定下载的apk


    // 广播出去,由广播接收器来处理下载完成的文件
      Intent sendIntent = new Intent("com.test.downloadComplete");
      // 把下载好的文件的保存地址加进Intent
      sendIntent.putExtra("downloadFile", file.getPath());
      sendBroadcast(sendIntent);

     <receiver android:name="com.yuxin.mhealth.ui.dbmanager.DownLoadBR" >
                <intent-filter>
                    <action android:name="com.test.downloadComplete" >
                    </action>
                </intent-filter>
            </receiver>

    public class DownLoadBR  extends BroadcastReceiver {
        @Override
        public void onReceive(Context context, Intent intent) {
            Intent install = new Intent(Intent.ACTION_VIEW);
            String pathString = intent.getStringExtra("downloadFile");
            install.setDataAndType(Uri.fromFile(new File(pathString)), "application/vnd.android.package-archive");
            install.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
            context.startActivity(install);
        }
    }

  • 相关阅读:
    对我影响最大的三位老师
    自我介绍
    第二周作业
    2019第一次作业
    PTA编程总结3
    币值转换
    PTA编程总结2
    PTA编程总结1
    秋季学期学习总结
    人生路上对你影响最大的三位老师
  • 原文地址:https://www.cnblogs.com/melons/p/5791944.html
Copyright © 2020-2023  润新知