1<?xml version="1.0" encoding="utf-8"?> 2<merge xmlns:android="http://schemas.android.com/apk/res/android" 3 xmlns:tools="http://schemas.android.com/tools" 4 android:layout_width="match_parent" 5 android:layout_height="match_parent" 6 tools:parentTag="android.widget.LinearLayout"> 7 8 <TextView 9 android:id="@+id/titleView" 10 android:layout_width="wrap_content" 11 android:layout_height="wrap_content" 12 android:layout_marginLeft="24dp" 13 android:layout_marginTop="64dp" 14 android:textSize="32sp" 15 android:textStyle="bold" 16 android:textColor="@color/text_color_dark"/> 17 18 <TextView 19 android:id="@+id/subtitleView" 20 android:layout_width="wrap_content" 21 android:layout_height="wrap_content" 22 android:layout_marginLeft="24dp" 23 android:layout_marginTop="8dp" 24 android:textSize="16sp" 25 android:textStyle="bold" 26 android:alpha="0.8" 27 android:textColor="@color/text_color_dark"/> 28 <View 29 android:layout_width="0dp" 30 android:layout_height="24dp" /> 31</merge>