gpt4 book ai didi

android - Intent 为 whats 应用程序添加额外内容不起作用

转载 作者:行者123 更新时间:2023-11-29 23:27:23 27 4
gpt4 key购买 nike

我在 whatsapp 应用程序中创建了一个 Intent ,如果我单击电话号码列表,它将打开 whatsapp 并打开对话(如果该号码存在于 whatsapp 中)。我成功了,直到打开对话。让我陷入困境的是,我在 intent put extra 中的信息不起作用。所以它不会在 whatsapp 文本框中显示任何内容。

这是我的 Intent 代码:

rvListWa!!.addOnItemTouchListener(RecyclerItemClickListener(this@ShareFileActivity,
RecyclerItemClickListener.OnItemClickListener { view, position ->

val url = "https://api.whatsapp.com/send?phone=62"+tempDatas!![position].custHpWa
val intent = Intent(Intent.ACTION_VIEW)
intent.data = Uri.parse(url)
intent.putExtra(Intent.EXTRA_TEXT, "This is an example of the text that will be sended")
startActivity(intent)

}))

它已经成功进入了 whatsapp 中的公开对话,但没有使用 put extra。

这个问题有什么解决办法吗?尽快。

最佳答案

这可以在没有 Intent.EXTRA_TEXT 的情况下完成

试试这个

val msg = "This is going to be the message"
val url = "https://api.whatsapp.com/send?phone=62"+tempDatas!![position].custHpWa + "&text="+msg
val intent = Intent(Intent.ACTION_VIEW)
intent.data = Uri.parse(url)
startActivity(intent)

添加intent.setType("text/plain")

关于android - Intent 为 whats 应用程序添加额外内容不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53334192/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com