会挽雕弓如满月,西北望,射天狼。这篇文章主要讲述Android Intent 隐式相关的知识,希望能为你提供帮助。
文章图片
androidManifest.xml
只有两个同时匹配,才能响应
注:一个活动只能指定一个action,但可以指定多个category
<
activity
android:name="
.SecondActivity"
android:label="
SecondActivity"
>
<
intent-filter>
//指定这个活动可以响应的action,ACTION_START
<
action android:name="
com.example.activitytest.ACTION_START"
/>
//指定这个活动可以响应的category,一种默认的category
<
category android:name="
android.intent.category.DEFAULT"
/>
//可指定多个category
<
!-- <
category android:name="
com.example.activitytest.MY_CATEGORY"
/>
-->
<
/intent-filter>
<
/activity>
【Android Intent 隐式】java
button_1.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
//指定要匹配的cation
Intent intent = new Intent("
com.example.activitytest.ACTION_START"
);
//可指定多个category
//intent.addCategory("
com.example.activitytest.MY_CATEGORY"
);
startActivity(intent);
}
});
推荐阅读
- Android Activity销毁
- Appium自动化测试教程-自学网-monkey参数
- Appium自动化测试教程-自学网-Package与Activity
- Appium自动化测试教程-自学网-monkey事件
- Linux部署Django(报错 nohup: ignoring input and appending output to ‘nohup.out’)
- Ubuntu下安卓模拟器的选择
- 如何使用命令对Android系统进行截屏
- Android_03android拨号软件
- Android数据存储和访问