f108837c1d
- Show them when the mailbox list is hidden - Data flow: MailboxListFragment ->(Callback)-> MessageListXL -> MessageListXLFragmentManager, which controls the action bar. (I'm not too happy with this flow, but we can at least avoid issuing yet another query to get these data.) Also related: - On the combined view, show the unread count for account rows Bug 3137891 Change-Id: I37fa1258d946329905bbbc0da905928bcf2f4cb1
54 lines
1.8 KiB
XML
54 lines
1.8 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.
|
|
-->
|
|
|
|
<!--
|
|
Custom view set to the action bar on 2-pane.
|
|
Displays the current mailbox and the unread count.
|
|
-->
|
|
<!-- STOPSHIP not pixel perfect yet -->
|
|
|
|
<LinearLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="fill_parent"
|
|
android:paddingBottom="12dip"
|
|
android:paddingLeft="12dip"
|
|
android:paddingRight="12dip"
|
|
android:orientation="horizontal"
|
|
>
|
|
<TextView
|
|
android:id="@+id/mailbox_name"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="fill_parent"
|
|
android:textSize="18dip"
|
|
android:textColor="#000"
|
|
android:gravity="bottom"
|
|
android:singleLine="true"
|
|
android:ellipsize="none"
|
|
/>
|
|
<TextView
|
|
android:id="@+id/unread_count"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="fill_parent"
|
|
android:layout_marginLeft="12dip"
|
|
android:textSize="14dip"
|
|
android:textColor="#000"
|
|
android:gravity="bottom"
|
|
android:singleLine="true"
|
|
android:ellipsize="none"
|
|
/>
|
|
</LinearLayout>
|