【问题标题】:Android Intent - How to open Instagram DM page?Android Intent - 如何打开 Instagram DM 页面?
【发布时间】:2019-09-20 23:55:42
【问题描述】:

只是为了澄清我的意思,我说的是当您向左滑动以进入 Instagram 用户列表以 DM 时进入的页面。

我已经四处搜索,但没有找到任何人提出这样做​​的意图脚本。

【问题讨论】:

    标签: android android-intent android-activity instagram


    【解决方案1】:

    此代码打开 Instagram 直接消息活动:

        val intentDirect = Intent(Intent.ACTION_SEND)
        intentDirect.setComponent(ComponentName("com.instagram.android","com.instagram.direct.share.handler.DirectShareHandlerActivity"))
        intentDirect.setType("text/plain")
        intentDirect.putExtra(Intent.EXTRA_TEXT, "Your message here")
        startActivity(intentDirect)
    

    【讨论】:

      猜你喜欢
      • 2012-08-05
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2020-04-13
      • 1970-01-01
      • 1970-01-01
      • 2021-08-03
      • 2012-09-17
      相关资源
      最近更新 更多