| <?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:background="@drawable/folder_item" | 
 |     android:gravity="center_vertical" | 
 |     android:minHeight="@dimen/folder_list_item_minimum_height" | 
 |     style="@style/FolderListItemEndStyle"> | 
 |  | 
 |     <View | 
 |         android:id="@+id/nested_folder_space" | 
 |         android:visibility="gone" | 
 |         android:layout_width="@dimen/nested_folder_space" | 
 |         android:layout_height="wrap_content" /> | 
 |  | 
 |     <ImageView | 
 |         android:id="@+id/folder_icon" | 
 |         android:layout_width="wrap_content" | 
 |         android:layout_height="wrap_content" | 
 |         style="@style/FolderListIconStyle" /> | 
 |  | 
 |     <TextView | 
 |         android:id="@+id/name" | 
 |         android:layout_height="wrap_content" | 
 |         android:layout_width="0dp" | 
 |         android:layout_weight="1" | 
 |         android:maxLines="2" | 
 |         android:ellipsize="end" | 
 |         android:textAlignment="viewStart" | 
 |         android:textColor="@color/text_color_black" | 
 |         android:textSize="@dimen/drawer_item_font_size" | 
 |         style="@style/FolderListItemStyle" /> | 
 |  | 
 |     <TextView | 
 |         android:id="@+id/unread" | 
 |         style="@style/DrawerUnreadCount" /> | 
 |  | 
 |     <TextView | 
 |         android:id="@+id/unseen" | 
 |         android:includeFontPadding="false" | 
 |         android:paddingTop="5dp" | 
 |         android:paddingBottom="5dp" | 
 |         style="@style/UnseenCount" /> | 
 |  | 
 | </com.android.mail.ui.FolderItemView> |