1 <?xml version="1.0" encoding="utf-8"?> 2 <LinearLayout 3 xmlns:android="http://schemas.android.com/apk/res/android" 4 android:layout_width="match_parent" 5 android:layout_height="match_parent"> 6 <FrameLayout 7 android:translationX="50dp" 8 android:translationY="50dp" 9 android:elevation="30dp" 10 android:layout_width="200dp" 11 android:layout_height="200dp" 12 android:background="@drawable/round_rect_background"> 13 <View 14 android:id="@+id/clickable1" 15 android:layout_width="100dp" 16 android:layout_height="100dp" 17 android:background="?android:attr/selectableItemBackground"/> 18 <View 19 android:id="@+id/clickable2" 20 android:translationX="50dp" 21 android:translationY="10dp" 22 android:layout_width="150dp" 23 android:layout_height="100dp" 24 android:background="?android:attr/selectableItemBackground"/> 25 </FrameLayout> 26 </LinearLayout>