<intent-filter> 是否需要写到<activity>内
时间: 2023-08-14 11:03:54 浏览: 102
非常抱歉,我在之前的回答中犯了一个错误。`<intent-filter>` 标签应该写在 `<activity>` 标签内部,而不是 `<activity>` 标签后面。以下是正确的清单文件示例:
```xml
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">
<application
android:allowBackup="true"
android:dataExtractionRules="@xml/data_extraction_rules"
android:fullBackupContent="@xml/backup_rules"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/Theme.First"
tools:targetApi="31">
<activity
android:name=".firsr"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
</application>
</manifest>
```
非常抱歉给您带来困惑,并感谢您的指正!
阅读全文