WEB开发网
开发学院手机开发Android 开发 android:程序中安装APK方法 阅读

android:程序中安装APK方法

 2010-05-31 14:11:00 来源:WEB开发网   
核心提示:File f = new File("sdcard/fallingball.apk");Intent intent = new Intent();intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);intent.setAction(android.conte

File f = new File("sdcard/fallingball.apk");

Intent intent = new Intent();

intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);

intent.setAction(android.content.Intent.ACTION_VIEW);

/* 设置intent的file与MimeType */

intent.setDataAndType(Uri.fromFile(f),

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

startActivity(intent);

Tags:android 程序

编辑录入:coldstar [复制链接] [打 印]
赞助商链接