我对Android知之甚少,所以请原谅这个问题是否正确。
我尝试设置一个意图,在选择网址时打开我的应用..我的代码如下所示:
<intent-filter>
<data android:scheme="http" android:host="something.com" android:pathPattern=".*p=.*" />
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
它完美无缺 - 但我想只在有变量的情况下启动应用程序&#34; p&#34;在URL中。含义:不要启动http://something.com/ok,而是启动http://something.com/ok/?p=100
我认为我需要添加android:pathPattern属性并寻找&#34; p =&#34;?有人可以帮忙吗?