Open AyakaAgo opened 2 years ago
某些网站使用 intent: 或 android-app:// 链接跳转到自己的应用,比如 Google 账号。
intent:
android-app://
点击“让您的账号安全无虞”,将跳转到类似如下的 intent: 链接:
intent:#Intent;package=com.google.android.gms;action=com.google.android.gms.accountsettings.action.BROWSE_SETTINGS;end
另外是 android-app:// 的说明:Intent#URI_ANDROID_APP_SCHEME(包括一些 intent: 链接的说明)。
我们可以使用 Intent#parseUri(String uri, int flags) 来解析这两种链接。
Some sites use intent: or android-app:// links to jump to their apps, such as Google Accounts.
Clicking on "Your Account is protected" will take you to an intent: link similar to the following:
The other is android-app://: Intent#URI_ANDROID_APP_SCHEME (including some intent: description)
We can use Intent#parseUri(String uri, int flags) to parse these links.
十分感谢你的指正,后续会优化该部分。
某些网站使用
intent:
或android-app://
链接跳转到自己的应用,比如 Google 账号。点击“让您的账号安全无虞”,将跳转到类似如下的
intent:
链接:另外是
android-app://
的说明:Intent#URI_ANDROID_APP_SCHEME(包括一些intent:
链接的说明)。我们可以使用 Intent#parseUri(String uri, int flags) 来解析这两种链接。
Some sites use
intent:
orandroid-app://
links to jump to their apps, such as Google Accounts.Clicking on "Your Account is protected" will take you to an
intent:
link similar to the following:The other is
android-app://
: Intent#URI_ANDROID_APP_SCHEME (including someintent:
description)We can use Intent#parseUri(String uri, int flags) to parse these links.