我想在点击电子邮件中的链接后打开应用程序。
这样的事情:http://exaple.com/#/recipe/some
清单中的内部intent-filter使用此代码:
<data android:scheme="http"
android:host="example.com"
android:pathPattern="/.*/recipe/.*" />
除符号#
外,它适用于任何前缀。例如,
http://example.com/any_word/recipe/some
是否可以逃避(跳过)#
符号?