gpt4 book ai didi

android - 如何从 Android 应用程序打开 Viber 公共(public)聊天

转载 作者:太空宇宙 更新时间:2023-11-03 11:09:58 26 4
gpt4 key购买 nike

我知道如何在 Viber 中打开与号码的对话: How to start Viber call from an Android app [new version]?

但是如何打开公共(public)聊天?有什么想法吗?

提前致谢

最佳答案

这段 Kotlin 代码对我来说工作得很好

        val viberPackageName = "com.viber.voip"
val phone= "5757575757"

try {
activity?.startActivity(Intent(Intent.ACTION_VIEW, Uri.parse("viber://add?number=$phone")))
} catch (ex: ActivityNotFoundException) {
try {
activity?.startActivity(Intent(Intent.ACTION_VIEW, Uri.parse("market://details?id=$viberPackageName")))
} catch (ex: ActivityNotFoundException) {
activity?.startActivity(Intent(Intent.ACTION_VIEW, Uri.parse("https://play.google.com/store/apps/details?id=$viberPackageName")))
}
}

关于android - 如何从 Android 应用程序打开 Viber 公共(public)聊天,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27189221/

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