56ffd12fcd
bug 3335090 Change-Id: I4922621b14f10a2013f3a91c7d76f9c6482a327d
73 lines
2.8 KiB
XML
73 lines
2.8 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- Copyright (C) 2009 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.
|
|
-->
|
|
|
|
<!-- extends RelativeLayout -->
|
|
<!--
|
|
NOTE: Don't set padding for this.
|
|
Background of this view will be changed by code, which resets padding.
|
|
-->
|
|
<com.android.email.activity.MailboxListItem
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="48dip"
|
|
android:background="?android:attr/activatedBackgroundIndicator"
|
|
>
|
|
<ImageView
|
|
android:id="@+id/folder_icon"
|
|
android:layout_width="32dip"
|
|
android:layout_height="32dip"
|
|
android:layout_alignParentLeft="true"
|
|
android:layout_centerVertical="true"
|
|
android:layout_marginRight="8dip"
|
|
android:layout_marginLeft="@dimen/mailbox_list_padding_left"
|
|
/>
|
|
<TextView
|
|
android:id="@+id/message_count"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_centerVertical="true"
|
|
android:layout_marginLeft="@dimen/mailbox_list_count_margin_left"
|
|
android:layout_marginRight="@dimen/mailbox_list_padding_right"
|
|
android:ellipsize="end"
|
|
android:singleLine="true"
|
|
android:textSize="14dip"
|
|
android:textColor="@color/text_secondary_color"
|
|
/>
|
|
<TextView
|
|
android:id="@+id/mailbox_name"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_toRightOf="@id/folder_icon"
|
|
android:layout_toLeftOf="@id/message_count"
|
|
android:layout_centerVertical="true"
|
|
android:ellipsize="end"
|
|
android:singleLine="true"
|
|
android:textSize="18dip"
|
|
android:textColor="@color/text_primary_color"
|
|
/>
|
|
<!-- Color chips are shown only for account rows on combined view. -->
|
|
<View
|
|
android:id="@+id/color_chip"
|
|
android:layout_width="32dip"
|
|
android:layout_height="8dip"
|
|
android:layout_marginLeft="16dip"
|
|
android:layout_alignParentTop="true"
|
|
android:layout_alignParentLeft="true"
|
|
android:visibility="gone"
|
|
/>
|
|
</com.android.email.activity.MailboxListItem>
|