2010-11-09 23:20:02 +00:00
|
|
|
<?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.
|
|
|
|
-->
|
|
|
|
|
|
|
|
<!--
|
2011-08-09 18:27:47 +00:00
|
|
|
The list items for the account spinner drop down.
|
2011-06-27 00:15:12 +00:00
|
|
|
Popup width is set at runtime from @dimen/account_spinner_dropdown_width
|
2010-11-09 23:20:02 +00:00
|
|
|
-->
|
2011-08-09 18:27:47 +00:00
|
|
|
<RelativeLayout
|
2010-11-09 23:20:02 +00:00
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2011-02-10 00:47:56 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="64dp"
|
2010-11-09 23:20:02 +00:00
|
|
|
>
|
2011-08-09 18:27:47 +00:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/unread_count"
|
|
|
|
android:layout_alignParentRight="true"
|
|
|
|
android:layout_centerVertical="true"
|
2011-09-15 18:58:35 +00:00
|
|
|
style="@style/unread_count"
|
2011-08-09 18:27:47 +00:00
|
|
|
/>
|
2011-02-10 00:47:56 +00:00
|
|
|
<LinearLayout
|
2011-08-09 18:27:47 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_width="wrap_content"
|
2011-02-10 00:47:56 +00:00
|
|
|
android:layout_marginLeft="16dp"
|
|
|
|
android:layout_marginRight="16dp"
|
|
|
|
android:orientation="vertical"
|
2011-08-09 18:27:47 +00:00
|
|
|
android:layout_toLeftOf="@+id/unread_count"
|
|
|
|
android:layout_alignParentLeft="true"
|
|
|
|
android:layout_centerVertical="true"
|
2011-02-10 00:47:56 +00:00
|
|
|
>
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/display_name"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
style="@style/action_bar_account_name"
|
|
|
|
/>
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/email_address"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
style="@style/action_bar_account_name_secondary"
|
|
|
|
/>
|
|
|
|
</LinearLayout>
|
2011-08-09 18:27:47 +00:00
|
|
|
<View
|
|
|
|
android:id="@+id/color_chip"
|
|
|
|
android:layout_width="32dip"
|
|
|
|
android:layout_height="6dip"
|
|
|
|
android:layout_alignParentTop="true"
|
|
|
|
android:layout_marginLeft="8dip"
|
|
|
|
android:visibility="gone"
|
2010-11-09 23:20:02 +00:00
|
|
|
/>
|
2011-08-09 18:27:47 +00:00
|
|
|
</RelativeLayout>
|