问题描述
- manifest.xml中的Action和Activity是什么关系
-
<activity android:name="BookmarkActivity" android:theme="@style/EditorActivityTheme" android:windowSoftInputMode="adjustResize"> <intent-filter android:label="@string/add_bookmark"> <action android:name="android.intent.action.INSERT" /> <category android:name="android.intent.category.DEFAULT" /> <data android:mimeType="vnd.android.cursor.dir/bookmark" /> </intent-filter>
如上所示的Activity与这个action是什么关系?
解决方案
Action官方解释
A string naming the action to be performed — or, in the case of broadcast intents, the action that took place and is being reported. The Intent class defines a number of action constants。
代表此Activity能接受的广播的action 或者action所对应系统进行的操作。
例如:Intent.ACTION_CALL调用的就是系统的打电话
时间: 2024-09-11 14:21:09