gpt4 book ai didi

带有目标组件的 Android 显式 Intent

转载 作者:IT王子 更新时间:2023-10-28 23:28:26 26 4
gpt4 key购买 nike

是否可以触发显式 Intent ,但不是针对我项目中的 Activity ,而是针对其他应用程序中的 Activity 。

我确定这段代码并且我知道它正在运行

Intent i=new Intent(this,MyActivity.class);

但是有没有可能做这样的事情

Intent i=new Intent(this,com.bzz.bla.bla.SomeActivity.class);

我的意思是从其他应用程序(包含在其他 apk 中的 Activity )显式启动 Activity 的确切方式是什么,这可能吗?

我试过了,但它让我强制关闭消息。

最佳答案

是的,这是可能的。但是 Intent 的创建是不同的。试试这个:

Intent intent = new Intent();
intent.setComponent(new ComponentName("The package name of the activity that you wish to launch","Its fully qualified class name"));
startActivityForResult(intent);

关于带有目标组件的 Android 显式 Intent ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6829187/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com