| OLD | NEW |
| (Empty) |
| 1 <?xml version="1.0" encoding="utf-8"?> | |
| 2 <!-- Copyright 2015 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 <LinearLayout | |
| 7 xmlns:android="http://schemas.android.com/apk/res/android" | |
| 8 xmlns:chrome="http://schemas.android.com/apk/res-auto" | |
| 9 android:layout_width="match_parent" | |
| 10 android:layout_height="match_parent" | |
| 11 android:minHeight="@dimen/enhanced_bookmark_minimum_dialog_size_tablet" | |
| 12 android:orientation="vertical" > | |
| 13 | |
| 14 <android.support.v7.widget.Toolbar | |
| 15 android:id="@+id/toolbar" | |
| 16 android:layout_width="match_parent" | |
| 17 android:layout_height="?attr/actionBarSize" | |
| 18 android:background="?attr/colorPrimary" /> | |
| 19 | |
| 20 <View | |
| 21 android:layout_width="match_parent" | |
| 22 android:layout_height="4dp" | |
| 23 android:layout_marginBottom="-4dp" | |
| 24 android:background="@drawable/eb_title_bar_shadow" /> | |
| 25 | |
| 26 <ScrollView | |
| 27 android:layout_width="match_parent" | |
| 28 android:layout_height="match_parent" > | |
| 29 | |
| 30 <LinearLayout | |
| 31 android:layout_width="match_parent" | |
| 32 android:layout_height="wrap_content" | |
| 33 android:orientation="vertical" | |
| 34 android:clipToPadding="false" > | |
| 35 | |
| 36 <org.chromium.chrome.browser.widget.EmptyAlertEditText | |
| 37 android:id="@+id/folder_title" | |
| 38 android:layout_width="match_parent" | |
| 39 android:layout_height="wrap_content" | |
| 40 android:layout_marginEnd="12dp" | |
| 41 android:layout_marginStart="12dp" | |
| 42 android:layout_marginTop="24dp" | |
| 43 android:hint="@string/title" | |
| 44 android:imeOptions="flagNoExtractUi" | |
| 45 android:inputType="textCapSentences|textAutoCorrect" | |
| 46 android:textSize="24sp" | |
| 47 chrome:alertMessage="@string/bookmark_missing_title" /> | |
| 48 | |
| 49 <TextView | |
| 50 android:layout_width="wrap_content" | |
| 51 android:layout_height="wrap_content" | |
| 52 android:layout_marginBottom="4dp" | |
| 53 android:layout_marginEnd="16dp" | |
| 54 android:layout_marginStart="16dp" | |
| 55 android:layout_marginTop="24dp" | |
| 56 android:text="@string/enhanced_bookmark_parent_folder" | |
| 57 android:textColor="@color/enhanced_bookmark_detail_section" | |
| 58 android:textSize="14sp" | |
| 59 android:textStyle="bold" /> | |
| 60 | |
| 61 <TextView | |
| 62 android:id="@+id/parent_folder" | |
| 63 android:layout_width="match_parent" | |
| 64 android:layout_height="wrap_content" | |
| 65 android:layout_marginStart="16dp" | |
| 66 android:layout_marginTop="8dp" | |
| 67 android:layout_marginBottom="32dp" | |
| 68 android:textColor="@color/dark_mode_tint" | |
| 69 android:textSize="16sp" /> | |
| 70 </LinearLayout> | |
| 71 </ScrollView> | |
| 72 | |
| 73 </LinearLayout> | |
| OLD | NEW |