Is there a way to disable all the items in a specific layout programmatically?

后端 未结 3 1667
青春惊慌失措
青春惊慌失措 2021-01-14 04:12

I have A game to which I recently added a global high score functionality which made a lot of people upset so I want to add the option of disabling it. What I did was this:

3条回答
  •  伪装坚强ぢ
    2021-01-14 05:15

    Just control the visiblity parameter for the Layout via setVisibility(). You can switch it between three values: visible, invisible and gone (see the documentation).

    I think in your case the most senseful would be to switch between visible and gone.

提交回复
热议问题