问问题
6204 次
1 回答
2
我使用这些链接测试了您所说的内容,并且对我有用
<data android:scheme="http" />
<data android:host="developer.android.com" />
<data android:path="/guide/topics/manifest/data-element.html"/>
我使用的意图是
Intent browserIntent = new Intent(
Intent.ACTION_VIEW,
Uri.parse("http://developer.android.com/guide/topics/manifest/data-element.html"));
startActivity(browserIntent);
android:path
必须在您为其提供的主机 URL 之后匹配才能工作?你能指定你使用的网址吗?阅读此链接以获取帮助
于 2013-07-31T06:18:27.510 回答