当我点击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()
}