1<?xml version="1.0" encoding="utf-8"?> 2 3<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 4 android:layout_width="match_parent" 5 android:layout_height="match_parent" 6 android:orientation="vertical" 7 > 8 <ImageView android:id="@+id/titleImage" 9 android:layout_height="0px" 10 android:layout_weight="1" 11 android:layout_width="match_parent" 12 android:scaleType="centerCrop" 13 android:transitionName="hero" 14 android:onClick="clicked" 15 /> 16 <LinearLayout android:layout_height="0px" 17 android:layout_width="match_parent" 18 android:layout_weight="2" 19 android:orientation="vertical" 20 > 21 <View android:layout_width="match_parent" 22 android:layout_height="2dp" 23 android:background="#808080"/> 24 <TextView android:layout_height="wrap_content" 25 android:layout_width="match_parent" 26 android:text="Ducky" 27 android:textSize="30sp" 28 android:textColor="#FFF" 29 /> 30 <View android:layout_width="match_parent" 31 android:layout_height="2dp" 32 android:background="#808080"/> 33 <TextView android:layout_height="wrap_content" 34 android:layout_width="match_parent" 35 android:text="Woot!" 36 android:textSize="30sp" 37 android:textColor="#FFF" 38 /> 39 <View android:layout_width="match_parent" 40 android:layout_height="2dp" 41 android:background="#808080"/> 42 <TextView android:layout_height="wrap_content" 43 android:layout_width="match_parent" 44 android:text="Ball" 45 android:textSize="30sp" 46 android:textColor="#FFF" 47 /> 48 <View android:layout_width="match_parent" 49 android:layout_height="2dp" 50 android:background="#808080"/> 51 <TextView android:layout_height="wrap_content" 52 android:layout_width="match_parent" 53 android:text="Block" 54 android:textSize="30sp" 55 android:textColor="#FFF" 56 /> 57 <View android:layout_width="match_parent" 58 android:layout_height="2dp" 59 android:background="#808080"/> 60 <TextView android:layout_height="wrap_content" 61 android:layout_width="match_parent" 62 android:text="Jelly Bean" 63 android:textSize="30sp" 64 android:textColor="#FFF" 65 /> 66 <View android:layout_width="match_parent" 67 android:layout_height="2dp" 68 android:background="#808080"/> 69 <TextView android:layout_height="wrap_content" 70 android:layout_width="match_parent" 71 android:text="Mug" 72 android:textSize="30sp" 73 android:textColor="#FFF" 74 /> 75 <View android:layout_width="match_parent" 76 android:layout_height="2dp" 77 android:background="#808080"/> 78 <TextView android:layout_height="wrap_content" 79 android:layout_width="match_parent" 80 android:text="Pencil" 81 android:textSize="30sp" 82 android:textColor="#FFF" 83 /> 84 <View android:layout_width="match_parent" 85 android:layout_height="2dp" 86 android:background="#808080"/> 87 <TextView android:layout_height="wrap_content" 88 android:layout_width="match_parent" 89 android:text="Scissors" 90 android:textSize="30sp" 91 android:textColor="#FFF" 92 /> 93 94 </LinearLayout> 95</LinearLayout>