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。