blob: f31a645f852e77081175e7647b72f53574e4ae2a [file] [log] [blame]
Vikram Aggarwal5e5ac742011-12-19 08:14:16 -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 Aggarwal6f6afe52012-01-04 14:43:44 -080019<!-- View shown in the navigation spinner in the actionbar. -->
Vikram Aggarwal5e5ac742011-12-19 08:14:16 -080020<RelativeLayout
21 xmlns:android="http://schemas.android.com/apk/res/android"
Vikram Aggarwal5e5ac742011-12-19 08:14:16 -080022 android:layout_height="match_parent"
Vikram Aggarwal6f6afe52012-01-04 14:43:44 -080023 android:layout_width="match_parent"
Vikram Aggarwal5e5ac742011-12-19 08:14:16 -080024 android:paddingLeft="0dip"
25 android:layout_marginLeft="0dip">
26
27 <TextView
28 android:id="@+id/unread"
29 android:layout_alignParentRight="true"
30 android:layout_marginLeft="4dp"
31 style="@style/UnreadCountActionBar" />
32
Mindy Pereirae973f222012-03-06 14:29:03 -080033 <LinearLayout
34 android:layout_width="match_parent"
35 android:layout_height="match_parent"
36 android:orientation="vertical"
37 android:gravity="center_vertical"
Mindy Pereirac08c15e2012-03-06 16:04:11 -080038 android:layout_toLeftOf="@id/unread"
39 android:background="@drawable/spinner_ab_holo_light">
Vikram Aggarwal5e5ac742011-12-19 08:14:16 -080040 <TextView
Mindy Pereiraae180202012-02-29 13:09:58 -080041 android:id="@+id/account_spinner_folder"
Vikram Aggarwal6f6afe52012-01-04 14:43:44 -080042 style="@android:style/TextAppearance.Holo.Widget.ActionBar.Title.Inverse"
Vikram Aggarwal5e5ac742011-12-19 08:14:16 -080043 android:singleLine="true"
44 android:ellipsize="end"
45 android:includeFontPadding="false"
46 android:layout_width="wrap_content"
47 android:layout_height="wrap_content" />
48 <TextView
49 android:id="@+id/account_spinner_account_name"
Vikram Aggarwal6f6afe52012-01-04 14:43:44 -080050 style="@android:style/TextAppearance.Holo.Widget.ActionBar.Subtitle.Inverse"
51 android:textColor="@color/actionbar_secondary"
Vikram Aggarwal5e5ac742011-12-19 08:14:16 -080052 android:singleLine="true"
53 android:ellipsize="end"
54 android:includeFontPadding="false"
55 android:layout_marginRight="4dp"
56 android:layout_width="wrap_content"
Vikram Aggarwal6f6afe52012-01-04 14:43:44 -080057 android:layout_height="match_parent" />
Mindy Pereirae973f222012-03-06 14:29:03 -080058 </LinearLayout>
Vikram Aggarwal5e5ac742011-12-19 08:14:16 -080059</RelativeLayout>