Button.setClickable(false) is not working

前端 未结 11 2313
無奈伤痛
無奈伤痛 2021-01-02 02:19

I have set mButton.setClickable(false); in my code but still this button is invoked by global button.setOnClickListener of my code.

EDIT:

11条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2021-01-02 03:08

    That seems to be by design. This is from the documentation of the View.setOnClickListener method:

    Register a callback to be invoked when this view is clicked. If this view is not clickable, it becomes clickable.

提交回复
热议问题