Intent 使用
Intent用法
1.显示Intent
2.隐式Intent
- 启动活动
<activity>
android:name=".SecondActivity"
android:exported="true">
<intent-filter>
<!-- 自动添加到隐式intent-->
<category android:name="android.intent.category.DEFAULT"/>
<category android:name="com.example.activitytest.MY_CATEGORY"/>
<action android:name="com.example.activitytest.ACTION_START"/>
</intent-filter>
</activity>

浙公网安备 33010602011771号