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
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 };