blob: 535617bcf9dd4a649f30e8200781ac82274c6646 [file] [log] [blame]
Vikram Aggarwal6f6afe52012-01-04 14:43:44 -08001<?xml version="1.0" encoding="utf-8"?>
2<!--
3 Copyright (C) 2011 Google Inc.
4 Licensed to The Android Open Source Project.
5
6 Licensed under the Apache License, Version 2.0 (the "License");
7 you may not use this file except in compliance with the License.
8 You may obtain a copy of the License at
9
10 http://www.apache.org/licenses/LICENSE-2.0
11
12 Unless required by applicable law or agreed to in writing, software
13 distributed under the License is distributed on an "AS IS" BASIS,
14 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 See the License for the specific language governing permissions and
16 limitations under the License.
17-->
18
Vikram Aggarwal2a25d0c2012-02-21 16:43:10 -080019 <!-- style="@style/AccountSwitchSpinnerItem" -->
Vikram Aggarwal80aeac52012-02-07 15:27:20 -080020<LinearLayout
Vikram Aggarwal6f6afe52012-01-04 14:43:44 -080021 xmlns:android="http://schemas.android.com/apk/res/android"
Vikram Aggarwal6f6afe52012-01-04 14:43:44 -080022 android:layout_height="match_parent"
Vikram Aggarwal80aeac52012-02-07 15:27:20 -080023 android:layout_width="match_parent"
Vikram Aggarwal6f6afe52012-01-04 14:43:44 -080024 android:paddingLeft="0dip"
25 android:layout_marginLeft="0dip">
26
Vikram Aggarwal80aeac52012-02-07 15:27:20 -080027 <!-- This spacer is here just to soak up horizontal space. -->
28 <!-- If this is omitted, the spinner triangle is too far from the text. -->
29 <FrameLayout
30 android:id="@+id/spinner_frame"
31 android:layout_width="@dimen/spinner_frame_width"
32 android:layout_height="match_parent"
33 android:layout_alignParentLeft="true">
34
Vikram Aggarwal2a25d0c2012-02-21 16:43:10 -080035 <!-- style="?android:attr/actionDropDownStyle" -->
Vikram Aggarwal6f6afe52012-01-04 14:43:44 -080036 <LinearLayout
37 android:id="@+id/spinner"
Vikram Aggarwal80aeac52012-02-07 15:27:20 -080038 android:layout_width="match_parent"
Vikram Aggarwal6f6afe52012-01-04 14:43:44 -080039 android:layout_height="match_parent"
40 android:orientation="vertical"
41 android:gravity="center_vertical">
42 <TextView
Vikram Aggarwal80aeac52012-02-07 15:27:20 -080043 android:id="@+id/account_spinner_label"
Vikram Aggarwal2a25d0c2012-02-21 16:43:10 -080044 style="@android:style/TextAppearance.Holo.Widget.ActionBar.Title.Inverse"
Vikram Aggarwal6f6afe52012-01-04 14:43:44 -080045 android:singleLine="true"
46 android:ellipsize="end"
Vikram Aggarwal6f6afe52012-01-04 14:43:44 -080047 android:layout_width="wrap_content"
48 android:layout_height="wrap_content" />
49 <TextView
Vikram Aggarwal80aeac52012-02-07 15:27:20 -080050 android:id="@+id/account_spinner_account_name"
Vikram Aggarwal2a25d0c2012-02-21 16:43:10 -080051 style="@android:style/TextAppearance.Holo.Widget.ActionBar.Subtitle.Inverse"
Vikram Aggarwal6f6afe52012-01-04 14:43:44 -080052 android:singleLine="true"
53 android:ellipsize="end"
Vikram Aggarwal6f6afe52012-01-04 14:43:44 -080054 android:layout_marginRight="4dp"
55 android:layout_width="wrap_content"
56 android:layout_height="wrap_content" />
57 </LinearLayout>
58
Vikram Aggarwal80aeac52012-02-07 15:27:20 -080059 </FrameLayout>
60
Vikram Aggarwal6f6afe52012-01-04 14:43:44 -080061 <TextView
62 android:id="@+id/unread"
Vikram Aggarwal80aeac52012-02-07 15:27:20 -080063 style="@style/unreadCountActionBarTablet" />
Vikram Aggarwal6f6afe52012-01-04 14:43:44 -080064
Vikram Aggarwal80aeac52012-02-07 15:27:20 -080065</LinearLayout>