2011-06-27 00:15:12 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<!-- Copyright (C) 2011 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-02 20:59:51 +00:00
|
|
|
<LinearLayout
|
2011-06-27 00:15:12 +00:00
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2011-08-08 23:58:48 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2011-08-02 20:59:51 +00:00
|
|
|
android:orientation="horizontal"
|
2011-06-27 00:15:12 +00:00
|
|
|
>
|
2011-07-12 01:29:18 +00:00
|
|
|
<RelativeLayout
|
2011-08-02 20:59:51 +00:00
|
|
|
android:id="@+id/account_spinner"
|
2011-08-15 19:17:29 +00:00
|
|
|
style="?android:attr/actionDropDownStyle"
|
2011-08-02 20:59:51 +00:00
|
|
|
android:layout_width="0dip"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_weight="1"
|
2011-07-12 01:29:18 +00:00
|
|
|
android:layout_centerVertical="true"
|
2011-08-12 22:01:51 +00:00
|
|
|
android:paddingTop="0dip"
|
|
|
|
android:paddingBottom="0dip"
|
2011-08-02 20:59:51 +00:00
|
|
|
android:focusable="true"
|
2011-06-27 00:15:12 +00:00
|
|
|
>
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/spinner_line_1"
|
2011-08-02 20:59:51 +00:00
|
|
|
android:layout_width="match_parent"
|
2011-07-12 01:29:18 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
style="@style/action_bar_spinner_primary_text"
|
2011-06-27 00:15:12 +00:00
|
|
|
/>
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/spinner_line_2"
|
2011-08-02 20:59:51 +00:00
|
|
|
android:layout_width="match_parent"
|
2011-06-27 00:15:12 +00:00
|
|
|
android:layout_height="wrap_content"
|
2011-07-12 01:29:18 +00:00
|
|
|
android:layout_below="@+id/spinner_line_1"
|
|
|
|
style="@style/action_bar_spinner_secondary_text"
|
2011-06-27 00:15:12 +00:00
|
|
|
/>
|
2011-07-12 01:29:18 +00:00
|
|
|
</RelativeLayout>
|
2011-08-02 20:59:51 +00:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/spinner_count"
|
|
|
|
style="@style/action_bar_unread_count"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:paddingLeft="16dip"
|
|
|
|
android:paddingRight="16dip"
|
|
|
|
android:includeFontPadding="false"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:ellipsize="none"
|
|
|
|
android:gravity="center"
|
|
|
|
/>
|
|
|
|
</LinearLayout>
|