How to open specific contact chat screen in various popular chat/social-networks apps?

前端 未结 3 894
甜味超标
甜味超标 2020-12-01 04:44

Background

I\'ve found that there is a way to open a specific contact conversation screen on WhatsApp, here .

Not only that, but I\'ve found that an app ca

3条回答
  •  一生所求
    2020-12-01 05:19

    Other posts here have good information. I wanted to add for LINE because the information is lacking in many places.

    String userId = findUserId();
    String sendText = "line://ti/p/~" + userId;
    Intent intent = null;
    try {
        intent = Intent.parseUri(sendText, Intent.URI_INTENT_SCHEME);
    } catch (URISyntaxException e) {
        e.printStackTrace();
    }
    startActivity(intent);
    

提交回复
热议问题