将URI方案设置为“http”或“https”,因为此类方案适用于所有设备。
使用Intent.ACTION_VIEW意图处理深度链接。
示例代码:
Uri uri = Uri.parse("http://example.com/path/to/page"); Intent intent = new Intent(Intent.ACTION_VIEW, uri); startActivity(intent);
上一篇:Android深度链接不稳定。
下一篇:Android深度链接和启动模式