溫馨提示×

IntentFilter能限定URL類型嗎

小樊
83
2024-07-03 12:01:10
欄目: 編程語言

是的,IntentFilter可以限定URL類型。可以使用元素在IntentFilter中指定數據類型為URI,并設置scheme、host、path等參數來限定URL的類型。例如:

<intent-filter>
    <action android:name="android.intent.action.VIEW" />
    <category android:name="android.intent.category.DEFAULT" />
    <data android:scheme="http" />
</intent-filter>

這樣就限定了該IntentFilter只接受scheme為http的URL。其他類型的URL將不會匹配該IntentFilter。

0