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>

原创文章,作者:Maggie-Hunter,如若转载,请注明出处:https://blog.ytso.com/272042.html

(0)
上一篇 2022年7月8日
下一篇 2022年7月8日

相关推荐

发表回复

登录后才能评论