Chromium Code Reviews| Index: chrome/android/java/res/layout/radio_button_with_description.xml |
| diff --git a/chrome/android/java/res/layout/radio_button_with_description.xml b/chrome/android/java/res/layout/radio_button_with_description.xml |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..a30e8b3513951dfda1bed71b3bd2b1bdfcfe2850 |
| --- /dev/null |
| +++ b/chrome/android/java/res/layout/radio_button_with_description.xml |
| @@ -0,0 +1,33 @@ |
| +<?xml version="1.0" encoding="utf-8"?> |
| +<!-- Copyright 2016 The Chromium Authors. All rights reserved. |
| + Use of this source code is governed by a BSD-style license that can be |
| + found in the LICENSE file. --> |
| + |
| +<!-- RadioButtonWithDescription extends RelativeLayout --> |
| +<merge xmlns:android="http://schemas.android.com/apk/res/android" |
| + android:orientation="horizontal" |
|
newt (away)
2016/02/25 18:01:32
remove this
PEConn
2016/02/25 20:45:11
Done.
|
| + android:paddingTop="10dp" > |
| + |
| + <RadioButton |
| + android:id="@+id/radio_button" |
| + android:layout_width="wrap_content" |
| + android:layout_height="wrap_content" |
| + android:paddingEnd="16dp" /> |
| + |
| + <TextView |
| + android:id="@+id/title" |
| + android:layout_width="wrap_content" |
| + android:layout_height="wrap_content" |
| + android:layout_toEndOf="@id/radio_button" |
| + android:textColor="#de000000" |
| + android:textSize="16sp" /> |
| + |
| + <TextView |
| + android:id="@+id/description" |
| + android:layout_width="wrap_content" |
| + android:layout_height="wrap_content" |
| + android:layout_alignStart="@id/title" |
| + android:layout_below="@id/title" |
| + android:textColor="#8a000000" |
| + android:textSize="14sp" /> |
| +</merge> |