OLD | NEW |
(Empty) | |
| 1 <?xml version="1.0" encoding="utf-8"?> |
| 2 <!-- Copyright 2016 The Chromium Authors. All rights reserved. |
| 3 Use of this source code is governed by a BSD-style license that can be |
| 4 found in the LICENSE file. --> |
| 5 |
| 6 <!-- RadioButtonWithDescription extends LinearLayout --> |
| 7 <merge xmlns:android="http://schemas.android.com/apk/res/android" |
| 8 android:orientation="horizontal" |
| 9 android:paddingTop="10dp" > |
| 10 |
| 11 <RadioButton |
| 12 android:id="@+id/radio_button" |
| 13 android:layout_width="wrap_content" |
| 14 android:layout_height="wrap_content" |
| 15 android:layout_gravity="center_horizontal" |
| 16 android:paddingEnd="16dp" /> |
| 17 |
| 18 <LinearLayout |
| 19 android:orientation="vertical" |
| 20 android:layout_width="match_parent" |
| 21 android:layout_height="wrap_content"> |
| 22 |
| 23 <TextView |
| 24 android:id="@+id/title" |
| 25 android:layout_width="wrap_content" |
| 26 android:layout_height="wrap_content" |
| 27 android:fontFamily="sans-serif" |
| 28 android:textColor="#de000000" |
| 29 android:textSize="16sp" /> |
| 30 |
| 31 <TextView |
| 32 android:id="@+id/description" |
| 33 android:layout_width="wrap_content" |
| 34 android:layout_height="wrap_content" |
| 35 android:fontFamily="sans-serif" |
| 36 android:textColor="#8a000000" |
| 37 android:textSize="14sp" /> |
| 38 </LinearLayout> |
| 39 </merge> |
OLD | NEW |