Fixup position of folder icon/ folder name.

Change-Id: I24b5ca12a72eeb092c7a0c0b4d93c5613f9b3c43
This commit is contained in:
Mindy Pereira 2012-06-28 10:51:37 -07:00
parent ed9bb52b96
commit 5dcb4adf2d

View File

@ -0,0 +1,82 @@
<?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="8dip"
android:layout_marginRight="8dp" />
<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/folder_name_color_primary_invertible" />
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_toRightOf="@id/folder_box"
android:layout_alignWithParentIfMissing="true"
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/folder_name_color_primary_invertible"
android:textAppearance="?android:attr/textAppearanceSmall"
android:visibility="gone" />
</RelativeLayout>
</com.android.mail.ui.FolderItemView>