replicant-packages_apps_Email/res/layout-xlarge/action_bar_current_mailbox.xml
Makoto Onuki e9818160e1 action bar: make current mailbox closer to gmail
Still not pp, but the current one looks too ugly.  Let's change it.

Bug 3137891

Change-Id: I2e036d23b2ec99bb63fe300a5c2ade72b192f81a
2011-01-05 17:29:48 -08:00

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="18dip"
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="14dip"
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="10dip"
android:textSize="14dip"
android:textColor="#000"
android:gravity="bottom"
android:singleLine="true"
android:ellipsize="none"
/>
</LinearLayout>