我想问一下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 URI路径段支持问号吗?我有一个格式的网址
www.blah.com/test?foo=123
匹配器类似于
<data android:pathPattern="/test.*"/>
返回的 URI 是www.blah.com/test?foo=123
,但是当我调用它时,uri.lastPathSegments
它只会返回test
并切断?foo=123
不,?foo=123
不是 URI 路径的一部分。它被称为查询。
您应该使用uri.query
oruri.getQueryParameter("foo")
代替。
不,Deeplink uri 不支持问号。
了解更多信息。请查看链接: https ://developer.android.com/training/app-links/deep-linking