1 <?xml version="1.0" encoding="utf-8"?> 2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 3 android:layout_width="wrap_content" 4 android:layout_height="wrap_content" > 5 6 <View 7 android:id="@+id/default_view" 8 android:layout_width="wrap_content" 9 android:layout_height="wrap_content" /> 10 11 <View 12 android:id="@+id/filter_touches_false_view" 13 android:layout_width="wrap_content" 14 android:layout_height="wrap_content" 15 android:filterTouchesWhenObscured="false" /> 16 17 <View 18 android:id="@+id/filter_touches_true_view" 19 android:layout_width="wrap_content" 20 android:layout_height="wrap_content" 21 android:filterTouchesWhenObscured="true" /> 22 23 </LinearLayout> 24