android 仅列表视图按钮更改
android listview only button change
我想在每个 listItem
处在 listView
中创建一个按钮。而这个按钮是setOnClickListener()
;当我单击此按钮时,我只想在 ItemView
位置更改此按钮而不使用 notifyDatasetChanged()
。
该方法全部刷新列表ItemViews
。我不想刷新所有项目。
我应该怎么做?
你可以使用 RecyclerView
http://developer.android.com/training/material/lists-cards.html
Use the RecyclerView widget when you have data collections whose elements change at runtime based on user action or network events
你需要android支持库
我想在每个 listItem
处在 listView
中创建一个按钮。而这个按钮是setOnClickListener()
;当我单击此按钮时,我只想在 ItemView
位置更改此按钮而不使用 notifyDatasetChanged()
。
该方法全部刷新列表ItemViews
。我不想刷新所有项目。
我应该怎么做?
你可以使用 RecyclerView
http://developer.android.com/training/material/lists-cards.html
Use the RecyclerView widget when you have data collections whose elements change at runtime based on user action or network events
你需要android支持库