35180be706
* Add custom layout for folder_item Change-Id: I31697ff8fdf867f76b395217a0290931832ba8ae
82 lines
3.1 KiB
XML
82 lines
3.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
Copyright (C) 2012 Google Inc.
|
|
Licensed to 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.
|
|
-->
|
|
|
|
<com.android.mail.ui.FolderItemView
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_height="wrap_content"
|
|
android:layout_width="match_parent"
|
|
android:minHeight="@dimen/folder_list_minimum_height"
|
|
android:background="@drawable/folder_item">
|
|
|
|
<ImageView
|
|
android:id="@+id/folder_parent_icon"
|
|
android:layout_width="16dip"
|
|
android:layout_height="16dip"
|
|
android:layout_alignParentBottom="true"
|
|
android:layout_alignParentRight="true"
|
|
android:visibility="gone"
|
|
android:src="@drawable/folder_parent_icon" />
|
|
|
|
<ImageView
|
|
android:id="@+id/folder_box"
|
|
android:layout_width="32dip"
|
|
android:layout_height="32dip"
|
|
android:layout_alignParentLeft="true"
|
|
android:layout_centerVertical="true"
|
|
android:layout_marginLeft="10dip"
|
|
/>
|
|
|
|
<TextView
|
|
android:id="@+id/unread"
|
|
style="@style/UnreadCount"
|
|
android:layout_marginRight="@dimen/folder_list_item_right_margin"
|
|
android:layout_alignWithParentIfMissing="true"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_toLeftOf="@id/folder_parent_icon"
|
|
android:textColor="@color/text_color_unread_invertible" />
|
|
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_centerVertical="true"
|
|
android:layout_toLeftOf="@id/unread"
|
|
android:layout_marginLeft="48dip"
|
|
android:layout_marginTop="@dimen/folder_swatch_height"
|
|
android:layout_marginBottom="@dimen/folder_swatch_height">
|
|
|
|
<TextView
|
|
android:id="@+id/name"
|
|
android:layout_height="wrap_content"
|
|
android:layout_width="match_parent"
|
|
android:maxLines="2"
|
|
android:ellipsize="end"
|
|
android:textColor="@color/folder_name_color_primary_invertible"
|
|
android:textAppearance="?android:attr/textAppearanceMedium" />
|
|
|
|
<TextView
|
|
android:id="@+id/description"
|
|
android:layout_height="wrap_content"
|
|
android:layout_width="match_parent"
|
|
android:layout_below="@id/name"
|
|
android:textColor="@color/text_color_primary_invertible"
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
android:visibility="gone" />
|
|
|
|
</RelativeLayout>
|
|
|
|
</com.android.mail.ui.FolderItemView> |