必威体育Betway必威体育官网
当前位置:首页 > IT技术

ComponentName

时间:2019-06-12 14:42:06来源:IT技术作者:seo实验室小编阅读:53次「手机版」
 

componentname

componentname(组件名称)是用来打开其他应用程序中的Activity或服务的。

Identifier for a specific APPlication component (ActivityServiceBroadcastReceiver, or contentprovider) that is available. Two pieces of information, encapsulated here, are required to identify a component: the package (a String) it exists in, and the class (a String) name inside of that package.

用法:

ComponentName cn=new ComponentName("com.example.myapp", "com.example.myapp.MainActivity");  

intent intent = new Intent();  

intent.setComponent(cn); 

startActivityForResult(intent,1); 

相关阅读

Android学习之ComponentName的使用

一、ComponentName简介 ComponentName,顾名思义,就是组件名称,这个类主要用来定义一个应用程序的组件,通过调用Intent中的setCompone

分享到:

栏目导航

推荐阅读

热门阅读