android 如何调用(打开)其他程序

  1. Intent intent = new Intent();  
  2. intent.setComponent(new ComponentName("所要打开的程序包名""所要打开的程序包名+主运行类名"));  
  3. intent.setAction(Intent.ACTION_VIEW);  
  4. startActivity(intent);  

 

android 如何调用系统自带的程序安装器安装程序

分类: android开发   539人阅读  评论(0)  收藏  举报
android file
[java]  view plain copy
  1. Intent intent = new Intent(Intent.ACTION_VIEW);  
  2. ddFlags(Intent.FLAG_ACTIVITY_NEW_TASK);  
[java]  view plain copy
  1. //filePath为文件路径  
  2. intent.setDataAndType(Uri.parse("file://"+filePath), "application/vnd.android.packagearchive");  
  3. startActivity(intent);  

你可能感兴趣的:(Android开发,Android基础学习)