Android Layout make all children's not clickable

后端 未结 12 2203
一生所求
一生所求 2021-01-01 12:45

I am using Relative Layout and many buttons in it with TextViews etc.I want to make all of them not clickable unless some event happens.

12条回答
  •  猫巷女王i
    2021-01-01 13:10

    As an alternative way, you can make clickable ViewGroup with children views via FrameLayout instead of RelativeLayout. Just position your child views in FrameLayout using paddings and gravity, make FrameLayout clickable, and all children views non-clickable:

    
    
        
    
        
    
    

提交回复
热议问题