ComponentName:可以启动其他应用的Activity、Service.
ComponentName chatActivity =new ComponentName(param1,param2);
param1:Activity、Service所在应用的包名
param2:Activity、Service的包名+类名
Activity:
ComponentName chatActivity =new ComponentName("com.npf.chat", "com.npf.chat.ui.ChatActivity");
Intent intent =new Intent();
intent.setComponent(chatActivity);
startActivity(intent);
Service:
ComponentName chatService =new ComponentName("com.npf.chat", "com.npf.chat.ui.ChatService");
Intent intent =new Intent();
intent.setComponent(chatService );
startService(intent);
注:如果该Activity非应用入口(入口Activity默认android:exported=”true”),则需要再清单文件中添加 android:exported=”true”。Service也需要添加android:exported=”true”。允许外部应用调用。
<activity android:name="com.npf.chat.ui.ChatActivity"
android:exported="true"/>
<service android:name="com.npf.chat.ui.ChatService"
android:exported="true"/>
作者:122604
链接:https://www.jianshu.com/p/c43b04f8f326
来源:简书
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:https://bianchenghao.cn/38509.html