处理深层链接时,意图过滤器的唯一标识符

时间:2018-06-19 09:28:36

标签: android deep-linking

我已将我的深层链接定义如下:

<activity android:name=".x"        
        android:launchMode="singleTask"
        android:parentActivityName=".x">

        <intent-filter android:autoVerify="true">
            <action android:name="android.intent.action.VIEW"/>
            <category android:name="android.intent.category.DEFAULT"/>
            <category android:name="android.intent.category.BROWSABLE"/>

            <data android:scheme="http"
                android:host="*.x.lv"
                android:pathPrefix="/x" />
            <data android:scheme="https"
                android:host="*x.lv"
                android:pathPrefix="/x" />
        </intent-filter>

    </activity>

如何为intent-filter添加“唯一”ID?动作不会削减它,因为"android.intent.action.VIEW"可以出于不同的原因使用,并且这并不能让我完全信任这个意图是针对deep-links而没有别的。有什么想法吗?

0 个答案:

没有答案