如何为多个文件夹url设置intent过滤器?

时间:2016-12-09 05:49:02

标签: android url android-manifest intentfilter deep-linking

http://exmapleweb.example.net/#/exm/some_token

这是我上面的url示例的代码

  <intent-filter>
            <action android:name="android.intent.action.VIEW" />

            <category android:name="android.intent.category.DEFAULT" />
            <category android:name="android.intent.category.BROWSABLE" />

            <data
                android:host="exmapleweb.example.net"
                android:pathPrefix="/#/exm/"
                android:scheme="http"
                android:pathPattern="/.*/.*"/>
        </intent-filter>

我没有使用上面的代码得到确切的结果,请帮我链接。

我还想在活动中打印最后一个令牌。

0 个答案:

没有答案