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

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

Issue 2205163003: Implement delete button in action bar for password entry editor (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address comment Created 4 years, 4 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
« no previous file with comments | « no previous file | chrome/android/java/res/menu/password_entry_editor_action_bar_menu.xml » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <?xml version="1.0" encoding="utf-8"?> 1 <?xml version="1.0" encoding="utf-8"?>
2 <!-- Copyright 2016 The Chromium Authors. All rights reserved. 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 3 Use of this source code is governed by a BSD-style license that can be
4 found in the LICENSE file. --> 4 found in the LICENSE file. -->
5 5
6 <ScrollView xmlns:android="http://schemas.android.com/apk/res/android" 6 <ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
7 android:layout_width="match_parent" 7 android:layout_width="match_parent"
8 android:layout_height="match_parent" 8 android:layout_height="match_parent"
9 android:fillViewport="true" > 9 android:fillViewport="true" >
10 10
11 <LinearLayout 11 <LinearLayout
12 android:id="@+id/password_entry_editor_interactive" 12 android:id="@+id/password_entry_editor_interactive"
13 android:layout_width="match_parent" 13 android:layout_width="match_parent"
14 android:layout_height="wrap_content" 14 android:layout_height="wrap_content"
15 android:orientation="vertical" 15 android:orientation="vertical"
16 android:title="@string/password_entry_editor_title" 16 android:title="@string/password_entry_editor_title">
17 android:visibility="gone">
18 17
19 <TextView 18 <TextView
20 android:text="@string/password_entry_editor_site_title" 19 android:text="@string/password_entry_editor_site_title"
21 android:textColor="@color/google_blue_700" 20 android:textColor="@color/google_blue_700"
22 android:layout_width="wrap_content" 21 android:layout_width="wrap_content"
23 android:layout_height="wrap_content" 22 android:layout_height="wrap_content"
24 android:layout_marginTop="10dp" 23 android:layout_marginTop="10dp"
25 android:layout_marginStart="15dp" 24 android:layout_marginStart="15dp"
26 android:gravity="center_vertical" 25 android:gravity="center_vertical"
27 android:textAppearance="?android:attr/textAppearanceMedium" /> 26 android:textAppearance="?android:attr/textAppearanceMedium" />
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
145 android:layout_marginTop="10dp" 144 android:layout_marginTop="10dp"
146 android:layout_marginEnd="15dp" 145 android:layout_marginEnd="15dp"
147 android:src="@drawable/ic_content_copy" 146 android:src="@drawable/ic_content_copy"
148 android:contentDescription="@string/password_entry_editor_copy_s tored_password" /> 147 android:contentDescription="@string/password_entry_editor_copy_s tored_password" />
149 148
150 </LinearLayout> 149 </LinearLayout>
151 150
152 </LinearLayout> 151 </LinearLayout>
153 152
154 </ScrollView> 153 </ScrollView>
OLDNEW
« no previous file with comments | « no previous file | chrome/android/java/res/menu/password_entry_editor_action_bar_menu.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698