Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(230)

Side by Side Diff: chrome/android/java/res/layout/radio_button_with_description.xml

Issue 1745563002: Revert of Created the dialog offering the user to merge their account data or keep it (Closed) Base URL: maybelle.lon.corp.google.com:/usr/local/google/code/clankium/src@sync_settings
Patch Set: Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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:paddingTop="10dp" >
9
10 <RadioButton
11 android:id="@+id/radio_button"
12 android:layout_width="wrap_content"
13 android:layout_height="wrap_content"
14 android:paddingEnd="16dp" />
15
16 <TextView
17 android:id="@+id/title"
18 android:layout_width="wrap_content"
19 android:layout_height="wrap_content"
20 android:layout_toEndOf="@id/radio_button"
21 android:textColor="#de000000"
22 android:textSize="16sp" />
23
24 <TextView
25 android:id="@+id/description"
26 android:layout_width="wrap_content"
27 android:layout_height="wrap_content"
28 android:layout_alignStart="@id/title"
29 android:layout_below="@id/title"
30 android:textColor="#8a000000"
31 android:textSize="14sp" />
32 </merge>
OLDNEW
« no previous file with comments | « chrome/android/java/res/layout/fre_tosanduma.xml ('k') | chrome/android/java/res/values/attrs.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698