Disable Click Event on Android ListView Items

前端 未结 10 1849
失恋的感觉
失恋的感觉 2021-02-05 04:13

I\'m trying to disable multiple click events on listview, say after pressing first click some media gets played from webservice, while it gets played, other items need to be

10条回答
  •  清酒与你
    2021-02-05 04:32

    create Adapter for that list, and there override this method

    public boolean isEnabled(int position);
    

    then return false when you want to disable the click

提交回复
热议问题