通过app的Activity名字启动他人app

使用app名字开打程序(activity),然后用Intent Action去打开某个app.

思路:首相获取手机上安装的app应用列表,然后选中其中一个app,用Intent去打开。

源代码如下:

     

PackageManager packageManager = STBNetServerActivity.this.getPackageManager();

 

           // 获取手机里的应用列表

 

           List<PackageInfo> pInfo = packageManager.getInstalledPackages(0);

 

           for (int i = 0; i < pInfo.size(); i++)

 

           {

 

               PackageInfo p = pInfo.get(i);

 

               // 获取相关包的<application>中的label信息,也就是-->应用程序的名字

 

               String label = packageManager.getApplicationLabel(p.applicationInfo).toString();

 

               System.out.println(label);

 

               if (label.equals(packageName)){ //比较label  

 

                   String pName = p.packageName; //获取包名  

 

                   Intent intent = new Intent();  

 

                  //获取intent  

 

                   intent =packageManager.getLaunchIntentForPackage(pName);  

 

                   startActivity(intent);  

 

               }

 

           }

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。