摘要: 场景:实现自动安装apk程序注意:不能使用 intent.setDataAndType(Uri.parse(apkPath), "application/vnd.android.package-archive");看代码:/** * 打开APK程序代码 * @param apkPat... 阅读全文
posted @ 2015-05-04 14:45 飞剑 阅读(941) 评论(0) 推荐(0) 编辑
摘要: public static Intent openFile(String filePath){ File file = new File(filePath); if(!file.exists()) return null; /* 取得扩展名 */ ... 阅读全文
posted @ 2015-05-04 14:28 飞剑 阅读(1383) 评论(0) 推荐(0) 编辑