Android: How to prevent any touch events from being passed from a view to the one underneath it?

前端 未结 8 708
深忆病人
深忆病人 2021-01-31 13:38

Specifically using the code below, is there a way to modify it so that the activity under this newly created view does not receive any gestures?

View v1 = new Vi         


        
8条回答
  •  隐瞒了意图╮
    2021-01-31 14:10

    You add a view like below, but make sure it is the last view you add to your xml. The last item in the xml is the item that lays on top of all the other views under it.

    
    

提交回复
热议问题