我一直在寻找这个,但我无法弄清楚。我有
Java 文件:
Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse(url ));
startActivity(browserIntent);
return true;
在哪里url = "facebook.com"
或者在清单中:
<intent-filter>
<data
android:host="facebook.com"
android:scheme="http" />
<data
android:host="www.facebook.com"
android:scheme="http" />
</intent-filter>
基本上,如果用户有一个域的应用程序,它应该启动它。这不是一般的方式,域是硬编码的。