单击时更新ViewHolder值而不更新ListView中的内容列表

时间:2017-11-01 16:46:18

标签: android listview

当我点击ListView行时,是否可以更新文本 没有重新初始化所有内容列表?

下面的代码中的notifyDataSetChanged不起作用:

    override fun selectView(chosenItemView: View?) {
    chosenItemView?.setBackgroundColor(Color.TRANSPARENT)

    val item = chosenItemView?.tag as ListAdapter.MyHolder // right item found
    item.name.text = "Another text when on clicked"

    adapter.notifyDataSetChanged()
    }

0 个答案:

没有答案