IntentFilter可以通過配置元素來指定數據類型。具體配置如下:
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="text/plain" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<data
android:scheme="http"
android:host="www.example.com"
android:pathPrefix="/path"
/>
</intent-filter>
通過配置元素,可以精確地指定IntentFilter的數據類型,從而確保只有特定類型的數據可以觸發該IntentFilter。