其他分享
首页 > 其他分享> > Intent 使用

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>

标签:name,Intent,exported,使用,android,true,隐式
来源: https://www.cnblogs.com/lwx11111/p/16226290.html