How to disable the particular list item in list-view in android?

后端 未结 6 721
陌清茗
陌清茗 2021-02-05 13:40

How to disable the particular list item in list-view in android? I mean if once i selected any one of item from a list-view,that item suppose to be disabled which means that ite

6条回答
  •  轮回少年
    2021-02-05 14:21

    When you click the item have it set off a boolean.. And what method would use that item have it check to see if the boolean has been triggered, set to false for example. Then in your on click portion use BaseAdapter.isEnabled() = false;

    Or with just that boolean alone they can never click it again.

提交回复
热议问题