Android深层链接URI返回路径段

问题描述 投票:0回答:2

我想问一下android URI路径段是否支持问号?我有一个格式的网址

www.blah.com/test?foo=123

匹配器就像是

<data android:pathPattern="/test.*"/>

返回的URI是www.blah.com/test?foo=123但是当我调用uri.lastPathSegments时它只返回test并切断?foo=123

android deep-linking android-deep-link
2个回答
1
投票

不,?foo=123不是URI路径的一部分。它被称为查询。 你应该使用uri.queryuri.getQueryParameter("foo")代替。


0
投票

不,Deeplink uri不支持问号。

有关更多信息。请检查链接:https://developer.android.com/training/app-links/deep-linking

© www.soinside.com 2019 - 2024. All rights reserved.