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 <ScrollView xmlns:android="http://schemas.android.com/apk/res/android" | |
| 7 xmlns:app="http://schemas.android.com/apk/res-auto" | |
| 8 android:layout_width="match_parent" | |
| 9 android:layout_height="wrap_content" | |
| 10 android:overScrollMode="ifContentScrolls" | |
| 11 android:paddingEnd="30dp" | |
| 12 android:paddingStart="30dp"> | |
| 13 | |
| 14 <LinearLayout | |
| 15 android:orientation="vertical" | |
| 16 android:layout_width="match_parent" | |
|
Yusuf
2016/02/18 19:16:16
android:layout_x tags should come first. if there
PEConn
2016/02/19 18:10:10
Done.
| |
| 17 android:layout_height="wrap_content" > | |
| 18 | |
| 19 <TextView | |
| 20 android:id="@+id/sync_import_data_prompt" | |
| 21 android:layout_width="wrap_content" | |
| 22 android:layout_height="wrap_content" | |
| 23 android:layout_gravity="center_horizontal" | |
| 24 android:textAppearance="?android:attr/textAppearanceSmall" /> | |
| 25 | |
| 26 <org.chromium.ui.widget.RadioButtonWithDescription | |
| 27 android:id="@+id/sync_confirm_import_choice" | |
| 28 android:layout_width="match_parent" | |
| 29 android:layout_height="wrap_content" | |
| 30 android:layout_gravity="center_horizontal" | |
| 31 app:titleText="@string/sync_import_existing_data" /> | |
| 32 | |
| 33 <org.chromium.ui.widget.RadioButtonWithDescription | |
| 34 android:id="@+id/sync_keep_separate_choice" | |
| 35 android:layout_width="match_parent" | |
| 36 android:layout_height="wrap_content" | |
| 37 android:layout_gravity="center_horizontal" | |
| 38 app:titleText="@string/sync_keep_existing_data_separate" /> | |
| 39 | |
| 40 </LinearLayout> | |
| 41 </ScrollView> | |
| OLD | NEW |