设置查找变量的意图

时间:2012-06-09 16:41:52

标签: android android-intent

我对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;?有人可以帮忙吗?

1 个答案:

答案 0 :(得分:0)

为此,您可以使用意图过滤器的pathPattern属性。 (See the reference here.)