作者热门文章
- r - 以节省内存的方式增长 data.frame
- ruby-on-rails - ruby/ruby on rails 内存泄漏检测
- android - 无法解析导入android.support.v7.app
- UNIX 域套接字与共享内存(映射文件)
我对隐式和显式 Intent 之间的区别感到困惑。隐式和显式 Intent 的目的是什么,为什么要使用这些概念?
我是 Android 应用程序的新手,所以请提供一些示例。
最佳答案
使用 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 类:
Intent intent = new Intent(this, ActivityABC.class);
startActivity(intent);
关于android - 隐式 Intent 和显式 Intent 之间的区别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13813586/
我是一名优秀的程序员,十分优秀!