博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
安装一个apk文件源代码
阅读量:6364 次
发布时间:2019-06-23

本文共 425 字,大约阅读时间需要 1 分钟。

 /**
  * 安装一个apk文件
  *
  * @param file
  * 要安装的完整文件名
  */
 protected void installApk(File file) {
  // 隐式意图
        Log.e("OpenFile", file.getName());
        Intent intent = new Intent();
        intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
        intent.setAction(android.content.Intent.ACTION_VIEW);
        intent.setDataAndType(Uri.fromFile(file),
                        "application/vnd.android.package-archive");
        startActivity(intent);
 }

 

转载于:https://www.cnblogs.com/common1140/p/3751553.html

你可能感兴趣的文章
MobinSDK:多页面应用模型+底层服务基于HTML5的Web应用开发平台
查看>>
execute、executeQuery和executeUpdate之间的区别
查看>>
Hibernate search
查看>>
Spring Cloud 配置中心内容加密
查看>>
静态成员
查看>>
老男孩教育每日一题-第98天-shell知识点:shell脚本中字符串截取的常用用法?...
查看>>
【撸码师备忘录】IntelliJIdea Golang插件
查看>>
使用PHP和MySQL专用接口以及ODBC接口
查看>>
yii 学习笔记一 、安装和部署新项目
查看>>
Confluence 6 使用 Apache 和 mod_proxy
查看>>
Confluence 6 计划你的升级
查看>>
系统集成资质培训 - 挣值分析题目分析
查看>>
Eclipse导入JEESNS项目和部署说明
查看>>
Java集合Stack源码深入解析
查看>>
本地串口TCP/IP 映射到远端串口
查看>>
自动刷新当前页的批处理
查看>>
Streams.js说明(英文原版)
查看>>
Oracle Database字符集(2)--基本概念
查看>>
PXE自动化批量安装Linux操作系统
查看>>
我的友情链接
查看>>