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 <View 24 android:id="@+id/clickable_false_view" 25 android:layout_width="wrap_content" 26 android:layout_height="wrap_content" 27 android:clickable="false" /> 28 29 <View 30 android:id="@+id/clickable_true_view" 31 android:layout_width="wrap_content" 32 android:layout_height="wrap_content" 33 android:clickable="true" /> 34 35 <View 36 android:id="@+id/focusable_false_view" 37 android:layout_width="wrap_content" 38 android:layout_height="wrap_content" 39 android:focusable="false" /> 40 41 <View 42 android:id="@+id/focusable_true_view" 43 android:layout_width="wrap_content" 44 android:layout_height="wrap_content" 45 android:focusable="true" /> 46 47 </LinearLayout> 48