读书人

android apk的装配

发布时间: 2012-08-21 13:00:21 作者: rapoo

android apk的安装
?android apk的安装

String str = "sample1.apk";
String fileName = Environment.getExternalStorageDirectory() + str;
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.fromFile(new File(fileName)), "application/vnd.android.package-archive");
startActivity(intent);

读书人网 >Android

热点推荐