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

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

Issue 861103002: Credentials chooser UI for Android. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebaised on top of master. Created 5 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 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 android:layout_width="fill_parent"
9 android:layout_height="wrap_content"
10 android:padding="8dp"
11 android:background="?attr/selectableItemBackground"
12 android:orientation="horizontal" >
13 <ImageView
14 android:id="@+id/credentials_app_image"
15 android:layout_gravity="center_vertical"
16 android:layout_width="32dp"
17 android:layout_height="32dp"
18 android:contentDescription="@null"/>
19 <LinearLayout
20 android:layout_margin="8dp"
21 android:layout_gravity="center_vertical"
22 android:layout_width="wrap_content"
23 android:layout_height="wrap_content"
24 android:orientation="vertical">
25 <TextView
26 android:id="@+id/credentials_app_name"
27 android:textAppearance="?android:attr/textAppearanceMedium"
28 android:singleLine="true"
29 android:ellipsize="end"
30 android:layout_width="wrap_content"
31 android:layout_height="wrap_content"/>
32 <TextView
33 android:id="@+id/credentials_app_credential_name"
34 android:textAppearance="?android:attr/textAppearanceSmall"
35 android:singleLine="true"
36 android:ellipsize="end"
37 android:layout_width="wrap_content"
38 android:layout_height="wrap_content"/>
39 </LinearLayout>
40 </LinearLayout>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698