为什么android深度链接使Whatsapp上的链接在Whatsapp的应用程序中打开?

时间:2018-05-14 12:23:34

标签: android android-studio webview android-webview deep-linking

我正在逐步跟踪this tutorial在Android上进行深层链接。部分代码如下,基本上它将在我的App的webview中打开url。

Intent intent = getIntent();
String action = intent.getAction();
Uri data = intent.getData();
if (data != null) {
    String path = data.getPath();
    String query = data.getEncodedQuery();
    String hash = data.getEncodedFragment();

    String fullPath = path;
    if(query !=  null){
        fullPath = path + "?" + query;
        if(hash != null){
            fullPath = path + "#" + hash;
        }
    }

    String openUrl = "https://" + Config.domain + fullPath;

    ....
    // and open in webview

}

它几乎完美无缺。可以在我的应用中打开Chrome浏览器上的链接。但是,当点击Whatsapp等消息应用程序上的链接时,会在Whatsapp上打开链接,替换Whatsapp上的原始内容!除非我退出应用程序并再次打开它,否则我无法返回Whatsapp的正常消息传递屏幕!

为什么它表现得那样,我该怎么做才能修复它?谢谢!

1 个答案:

答案 0 :(得分:0)

我遇到了完全相同的问题,因为我将“launchMode”设置为singleTop。我把它改成了singleTask,它运行得很好。