给出了这三个url:
1) https://example.com
2) https://example.com/app
3) https://example.com/app?param=hello
假设我在gmail应用程序中收到带有这三个链接的邮件,我需要以下行为:
1) Should not open the app
2) Should open the app
3) Should open the app and extract the parameter's value
到目前为止我所取得的成就:
<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="example.com"
android:pathPrefix="/app"
android:scheme="https" />
</intent-filter>
这个片段适用于1)
和2)
的情况:第一个url没有在应用程序中打开,第二个是。但遗憾的是,第三个链接我没有被应用程序打开。
我还尝试了path
、pathPrefix
和pathPattern
的一些不同变体,但我没有幸运地实现所有三种给定的行为。
所以我需要你们的帮助,伙计们,你们能提供一个符合给定要求的片段或一些我可以测试的提示吗?
更新:
将android:pathPrefix
更改为android:pathPattern
现在可以正常工作:系统的意向选择器仅在2)
和3)
的情况下显示,1)
的情况下直接打开浏览器。
但
另外,我想实现的是在进入应用程序或触发意向选择器之前检查特定参数。只有当参数param
保持值hello
而不是goodbye
时,才应该发生这种情况。pathPattern
-属性中有某种正则表达式,这可能吗?
我希望这个解决方案能帮助您解决任务。
Manifest.xml
不要在Manifest.xml中包含
android:pathPrefix="/app"
<activity android:name=".YourActivity">
<intent-filter android:label="@string/app_name">
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="http"
android:host="example.com"/>
</intent-filter>
</activity>
在YourActivity.kt中,检查Intent数据以执行进一步操作。
注意:代码是用Kotlin 编写的
val action = intent.action
val data = intent.dataString
if (Intent.ACTION_VIEW == action && data != null) {
if (data.equals("http://example.com")) {
Toast.makeText(this, "contains only URL", Toast.LENGTH_SHORT).show()
} else if (data.contains("http://example.com/") && !data.contains("?")) {
Toast.makeText(this, "contains URL with pathPrefix", Toast.LENGTH_SHORT).show()
} else if (data.contains("http://example.com/") && data.contains("?")) {
Toast.makeText(this, "contains URL with data", Toast.LENGTH_SHORT).show()
}
} else {
Toast.makeText(this, "Intent from Activity", Toast.LENGTH_SHORT).show()
}