gpt4 book ai didi

android - 需要帮助从适配器Kotlin打开URL

转载 作者:行者123 更新时间:2023-12-02 13:40:07 25 4
gpt4 key购买 nike

我需要打开一个我要从数据库中提取的项目,并在浏览器中打开其url。
但它没有打开,但是如果我在onclicklistener上尝试不同的代码,它将运行它,但是当我尝试打开url时,它无法这样做

class ItemHolder(itemView: View): RecyclerView.ViewHolder(itemView)
{
fun bind(n: String, p: Double, u: String, item_id: Int)
{
itemView.item_name.text=n
itemView.item_price.text=p.toString()
var web:String=""+u
web=web.replace(" ", "%20")
Picasso.with(itemView.context).load(web).into(itemView.item_photo)

itemView.view_browers.setOnClickListener {
val context: Context? = null

val url = "http://www.example.com"
context?.startActivity(Intent(Intent.ACTION_VIEW, Uri.parse(url)))


}

}
}

最佳答案

您将context设置为null,因此该行

context?.startActivity(Intent(Intent.ACTION_VIEW, Uri.parse(url)))
什么也不会做。
您需要使用非空上下文。向我们展示有效的代码,我们可以对其进行修改,使其满足您的要求。

关于android - 需要帮助从适配器Kotlin打开URL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64236339/

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