Remove folder_item.xml

Just use the one in unifiedemail

Change-Id: Ifa2c0f207fc758a8b13c03bb9fcaa2446c8b7469
This commit is contained in:
Mindy Pereira 2012-06-27 09:29:22 -07:00
parent ebd249b0a3
commit ed9bb52b96

View File

@ -1,82 +0,0 @@
<?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>