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

前端 未结 8 728
深忆病人
深忆病人 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:07

    Just add a click delegate to the top view background, that will stop the views underneath receiving touches

    linear_layout_background.Click += delegate
                {
                    // Ensures views underneath does not receive touch events
                };
    

提交回复
热议问题