| Index: chrome/android/java/res/layout/account_chooser_infobar_item.xml
|
| diff --git a/chrome/android/java/res/layout/account_chooser_infobar_item.xml b/chrome/android/java/res/layout/account_chooser_infobar_item.xml
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..4c144e8cab26bc24993a11ffb1c63ff7f11039af
|
| --- /dev/null
|
| +++ b/chrome/android/java/res/layout/account_chooser_infobar_item.xml
|
| @@ -0,0 +1,39 @@
|
| +<?xml version="1.0" encoding="utf-8"?>
|
| +<!-- Copyright 2015 The Chromium Authors. All rights reserved.
|
| + Use of this source code is governed by a BSD-style license that can be
|
| + found in the LICENSE file. -->
|
| +
|
| +<LinearLayout
|
| + xmlns:android="http://schemas.android.com/apk/res/android"
|
| + android:layout_width="wrap_content"
|
| + android:layout_height="wrap_content"
|
| + android:padding="8dp"
|
| + android:orientation="horizontal" >
|
| + <ImageView
|
| + android:id="@+id/profile_image"
|
| + android:layout_width="32dp"
|
| + android:layout_height="32dp"
|
| + android:layout_gravity="center_vertical"
|
| + android:contentDescription="@null"/>
|
| + <LinearLayout
|
| + android:layout_width="wrap_content"
|
| + android:layout_height="wrap_content"
|
| + android:layout_gravity="center_vertical"
|
| + android:layout_margin="8dp"
|
| + android:orientation="vertical">
|
| + <TextView
|
| + android:id="@+id/username"
|
| + android:layout_width="wrap_content"
|
| + android:layout_height="wrap_content"
|
| + android:ellipsize="end"
|
| + android:singleLine="true"
|
| + android:textAppearance="?android:attr/textAppearanceMedium"/>
|
| + <TextView
|
| + android:id="@+id/display_name"
|
| + android:layout_width="wrap_content"
|
| + android:layout_height="wrap_content"
|
| + android:ellipsize="end"
|
| + android:singleLine="true"
|
| + android:textAppearance="?android:attr/textAppearanceSmall"/>
|
| + </LinearLayout>
|
| +</LinearLayout>
|
|
|