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

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

Issue 1840513002: Redesign sign in and sign in confirmation screens for Narnia 2.0 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address comments Created 4 years, 8 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
4 Use of this source code is governed by a BSD-style license that can be
5 found in the LICENSE file.
6 -->
7 <LinearLayout
8 xmlns:android="http://schemas.android.com/apk/res/android"
9 android:layout_width="match_parent"
10 android:layout_height="wrap_content"
11 android:gravity="center_vertical"
12 android:paddingStart="16dp"
13 android:paddingEnd="16dp"
14 android:orientation="horizontal">
15
16 <ImageView
17 android:id="@+id/account_image"
18 android:layout_width="40dp"
19 android:layout_height="40dp"
20 android:layout_marginEnd="16dp"
21 android:contentDescription="@null"/>
22
23 <TextView
24 android:id="@+id/account_name"
25 android:layout_width="0dp"
26 android:layout_height="wrap_content"
27 android:layout_weight="1"
28 android:minHeight="56dp"
29 android:gravity="center_vertical"
30 android:textColor="@color/default_text_color"
31 android:textSize="@dimen/fre_normal_text_size"/>
32
33 <ImageView
34 android:id="@+id/account_selection_mark"
35 android:layout_width="24dp"
36 android:layout_height="24dp"
37 android:layout_marginStart="16dp"
38 android:src="@drawable/bookmark_check_blue"
39 android:contentDescription="@null"
40 android:visibility="gone"/>
41 </LinearLayout>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698