是否可以创建一个模式,以防用户没有应用程序,它将发送给他在 Google 的市场上下载?
不。
欢迎您使用 HTTP URL 作为您的“自定义协议”:
<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="www.this-so-does-not-exist.com"
android:path="/something"
android:scheme="http"/>
</intent-filter>
这<intent-filter>
将匹配http://www.this-so-does-not-exist.com/something
。如果您的应用未安装,用户将在 Web 浏览器中查看。但是,如果您的应用程序已安装,用户可能仍会选择在 Web 浏览器中查看此内容,而不是从选择器中选择您的应用程序。