1<RelativeLayout 2 xmlns:android="http://schemas.android.com/apk/res/android" 3 xmlns:lb="http://schemas.android.com/apk/res-auto" 4 android:layout_width="match_parent" 5 android:layout_height="wrap_content" 6 > 7 <TextView 8 android:id="@+id/t1" 9 android:layout_width="wrap_content" 10 android:layout_height="wrap_content" 11 android:focusable="true" 12 android:focusableInTouchMode="true" 13 android:text="Line 1" /> 14 <TextView 15 android:id="@+id/t2" 16 android:layout_width="wrap_content" 17 android:layout_height="wrap_content" 18 android:focusable="true" 19 android:focusableInTouchMode="true" 20 android:layout_below="@id/t1" 21 android:text="Line 2" /> 22 23</RelativeLayout> 24