1720f82513
part of b/5520685 update account switch spinner to match Gmail layout Change-Id: I727d318f3f10199399b61fc4455e44d302fb8e2f
70 lines
2.5 KiB
XML
70 lines
2.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- Copyright (C) 2010 The Android Open Source Project
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
-->
|
|
|
|
<!--
|
|
The list items for the account spinner drop down.
|
|
Popup width is set at runtime from @dimen/account_dropdown_dropdownwidth
|
|
-->
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
style="?android:attr/spinnerDropDownItemStyle"
|
|
android:layout_height="48dip"
|
|
android:layout_width="match_parent"
|
|
android:gravity="center_vertical">
|
|
|
|
<RelativeLayout
|
|
android:layout_height="wrap_content"
|
|
android:layout_width="0dip"
|
|
android:layout_weight="1">
|
|
<TextView
|
|
android:id="@+id/display_name"
|
|
android:singleLine="true"
|
|
android:layout_height="wrap_content"
|
|
android:layout_width="match_parent"
|
|
android:ellipsize="end"
|
|
style="@android:style/TextAppearance.Holo.Widget.ActionBar.Title"/>
|
|
|
|
<TextView
|
|
android:id="@+id/email_address"
|
|
android:layout_height="wrap_content"
|
|
android:layout_width="match_parent"
|
|
android:ellipsize="end"
|
|
android:layout_below="@id/display_name"
|
|
android:layout_alignWithParentIfMissing="true"
|
|
android:layout_centerVertical="true"
|
|
style="@android:style/TextAppearance.Holo.Widget.ActionBar.Subtitle"/>
|
|
|
|
</RelativeLayout>
|
|
<RelativeLayout
|
|
android:layout_height="wrap_content"
|
|
android:layout_width="wrap_content">
|
|
<View
|
|
android:id="@+id/color_chip"
|
|
android:layout_width="32dip"
|
|
android:layout_height="6dip"
|
|
android:layout_marginBottom="2dip"
|
|
android:layout_alignParentTop="true"
|
|
android:layout_marginLeft="8dip"
|
|
android:background="@android:color/black"
|
|
/>
|
|
<TextView
|
|
android:id="@+id/unread_count"
|
|
style="@style/unreadCount"
|
|
android:layout_centerVertical="true" />
|
|
</RelativeLayout>
|
|
|
|
</LinearLayout>
|
|
|