1<?xml version="1.0" encoding="utf-8"?> 2 3<merge xmlns:android="http://schemas.android.com/apk/res/android"> 4 <TextView 5 android:background="#FF0000" 6 android:textSize="200sp" 7 android:layout_width="200dp" 8 android:layout_height="200dp" /> 9 <TextView 10 android:background="#00FF00" 11 android:textSize="200sp" 12 android:layout_width="200dp" 13 android:layout_height="200dp" /> 14 <TextView 15 android:background="#0000FF" 16 android:textSize="200sp" 17 android:layout_width="200dp" 18 android:layout_height="200dp" /> 19 <TextView 20 android:background="#FF00FF" 21 android:textSize="200sp" 22 android:layout_width="200dp" 23 android:layout_height="200dp" /> 24 <TextView 25 android:background="#00FFFF" 26 android:textSize="200sp" 27 android:layout_width="200dp" 28 android:layout_height="200dp" /> 29</merge> 30