Chromium Code Reviews| 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 RelativeLayout --> | |
| 7 <merge xmlns:android="http://schemas.android.com/apk/res/android" | |
| 8 android:orientation="horizontal" | |
|
newt (away)
2016/02/25 18:01:32
remove this
PEConn
2016/02/25 20:45:11
Done.
| |
| 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:paddingEnd="16dp" /> | |
| 16 | |
| 17 <TextView | |
| 18 android:id="@+id/title" | |
| 19 android:layout_width="wrap_content" | |
| 20 android:layout_height="wrap_content" | |
| 21 android:layout_toEndOf="@id/radio_button" | |
| 22 android:textColor="#de000000" | |
| 23 android:textSize="16sp" /> | |
| 24 | |
| 25 <TextView | |
| 26 android:id="@+id/description" | |
| 27 android:layout_width="wrap_content" | |
| 28 android:layout_height="wrap_content" | |
| 29 android:layout_alignStart="@id/title" | |
| 30 android:layout_below="@id/title" | |
| 31 android:textColor="#8a000000" | |
| 32 android:textSize="14sp" /> | |
| 33 </merge> | |
| OLD | NEW |