意图 URI
此示例显示了如何从浏览器启动 intent:
<a href="intent://host.com/path#Intent;package=com.sample.test;scheme=yourscheme;end">Start intent</a>
此意图将启动应用程序包 com.sample.test
或将打开谷歌播放与此包。
这个意图也可以用 javascript 启动:
var intent = "intent://host.com/path#Intent;package=com.sample.test;scheme=yourscheme;end";
window.location.replace(intent)
在活动中,可以从意图数据中获取此主机和路径:
@Override
public void onCreate(Bundle bundle) {
super.onCreate(bundle);
Uri data = getIntent().getData(); // returns host.com/path
}
Intent URI 语法:
HOST/URI-path // Optional host
#Intent;
package=[string];
action=[string];
category=[string];
component=[string];
scheme=[string];
end;