1<merge xmlns:android="http://schemas.android.com/apk/res/android"> 2<LinearLayout 3 android:layout_width="match_parent" 4 android:layout_height="wrap_content" 5 android:layout_weight="1" 6 android:weightSum="3"> 7 <LinearLayout 8 style="@style/SectionContainer" 9 android:layout_width="wrap_content" 10 android:layout_height="wrap_content" 11 android:layout_weight="1"> 12 <TextView 13 android:layout_width="wrap_content" 14 android:layout_height="wrap_content" 15 android:gravity="center_vertical" 16 android:layout_weight="1" 17 android:text="@string/label_metric_oem_paid"/> 18 <TextView 19 android:id="@+id/oemPaidRxBytesTextView" 20 android:layout_width="wrap_content" 21 android:layout_height="wrap_content" 22 android:gravity="center_vertical" 23 android:layout_weight="1" 24 android:text="?"/> 25 <TextView 26 android:id="@+id/oemPaidTxBytesTextView" 27 android:layout_width="wrap_content" 28 android:layout_height="wrap_content" 29 android:gravity="center_vertical" 30 android:layout_weight="1" 31 android:text="?"/> 32 </LinearLayout> 33 <LinearLayout 34 style="@style/SectionContainer" 35 android:layout_width="wrap_content" 36 android:layout_height="wrap_content" 37 android:layout_weight="1"> 38 <TextView 39 android:layout_width="wrap_content" 40 android:layout_height="wrap_content" 41 android:gravity="center_vertical" 42 android:layout_weight="1" 43 android:text="@string/label_metric_oem_private"/> 44 <TextView 45 android:id="@+id/oemPrivateRxBytesTextView" 46 android:layout_width="wrap_content" 47 android:layout_height="wrap_content" 48 android:gravity="center_vertical" 49 android:layout_weight="1" 50 android:text="?"/> 51 <TextView 52 android:id="@+id/oemPrivateTxBytesTextView" 53 android:layout_width="wrap_content" 54 android:layout_height="wrap_content" 55 android:gravity="center_vertical" 56 android:layout_weight="1" 57 android:text="?"/> 58 </LinearLayout> 59 <LinearLayout 60 style="@style/SectionContainer" 61 android:layout_width="wrap_content" 62 android:layout_height="wrap_content" 63 android:layout_weight="1"> 64 <TextView 65 android:layout_width="wrap_content" 66 android:layout_height="wrap_content" 67 android:gravity="center_vertical" 68 android:layout_weight="1" 69 android:text="@string/label_metric_total_oem_managed"/> 70 <TextView 71 android:id="@+id/totalOemManagedRxBytesTextView" 72 android:layout_width="wrap_content" 73 android:layout_height="wrap_content" 74 android:gravity="center_vertical" 75 android:layout_weight="1" 76 android:text="?"/> 77 <TextView 78 android:id="@+id/totalOemManagedTxBytesTextView" 79 android:layout_width="wrap_content" 80 android:layout_height="wrap_content" 81 android:gravity="center_vertical" 82 android:layout_weight="1" 83 android:text="?"/> 84 </LinearLayout> 85</LinearLayout> 86</merge>