gpt4 book ai didi

android - 隐式 Intent 和显式 Intent 之间的区别

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

我对隐式显式 Intent 之间的区别感到困惑。隐式和显式 Intent 的目的是什么,为什么要使用这些概念?

我是 Android 应用程序的新手,所以请提供一些示例。

最佳答案

隐式 Activity 调用

使用 Intent 过滤器,您可以为您的 Activity 创建操作,以便其他应用可以通过操作调用您的 Activity :

<activity android:name=".BrowserActivitiy" android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<data android:scheme="http"/>
</intent-filter>
</activity>

.

Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://www.example.com"));
startActivity(intent);

显式 Activity 调用

您调用电话,准确指明要使用的 Activity 类:

Intent intent = new Intent(this, ActivityABC.class);
startActivity(intent);

Here's an additional reference

关于android - 隐式 Intent 和显式 Intent 之间的区别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13813586/

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