2008-10-27 21:04:44 -04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout
|
2011-02-02 22:42:45 -05:00
|
|
|
android:id="@+id/folder_list_item_layout"
|
2008-10-27 21:04:44 -04:00
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="fill_parent"
|
2010-05-02 00:54:09 -04:00
|
|
|
android:layout_height="wrap_content"
|
2010-05-10 20:17:32 -04:00
|
|
|
android:minHeight="?android:attr/listPreferredItemHeight"
|
2010-04-26 18:22:23 -04:00
|
|
|
android:paddingRight="4dip"
|
2010-05-02 00:54:09 -04:00
|
|
|
android:paddingBottom="2dip"
|
2008-10-27 21:04:44 -04:00
|
|
|
android:orientation="horizontal"
|
2010-04-26 18:22:23 -04:00
|
|
|
android:gravity="center_vertical" >
|
|
|
|
|
2010-01-06 00:23:32 -05:00
|
|
|
<View
|
|
|
|
android:id="@+id/chip"
|
2012-10-02 20:52:40 -04:00
|
|
|
android:layout_width="32dip"
|
|
|
|
android:layout_height="32dip"
|
2010-12-28 04:11:10 -05:00
|
|
|
android:layout_marginTop="2dip"
|
|
|
|
android:layout_marginBottom="1dip"
|
2012-09-10 10:40:20 -04:00
|
|
|
android:layout_marginLeft="8dip"
|
|
|
|
android:layout_marginRight="6dip"
|
2010-01-06 00:23:32 -05:00
|
|
|
android:layout_centerVertical="true"
|
2010-04-26 18:22:23 -04:00
|
|
|
android:layout_alignParentLeft="true" />
|
|
|
|
|
2008-10-27 21:04:44 -04:00
|
|
|
<LinearLayout
|
2010-04-26 18:22:23 -04:00
|
|
|
android:layout_width="fill_parent"
|
2012-09-30 23:05:32 -04:00
|
|
|
android:layout_height="wrap_content"
|
2009-11-16 14:26:09 -05:00
|
|
|
android:layout_weight="1"
|
2008-10-27 21:04:44 -04:00
|
|
|
android:orientation="vertical"
|
2010-05-02 00:54:09 -04:00
|
|
|
android:gravity="center_vertical"
|
2010-04-26 18:22:23 -04:00
|
|
|
android:paddingLeft="6dip" >
|
|
|
|
|
2008-10-27 21:04:44 -04:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/folder_name"
|
2009-11-16 14:26:09 -05:00
|
|
|
android:layout_width="fill_parent"
|
2010-04-26 18:22:23 -04:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:textColor="?android:attr/textColorPrimary"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceLarge" />
|
|
|
|
|
2008-10-27 21:04:44 -04:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/folder_status"
|
2009-11-16 14:26:09 -05:00
|
|
|
android:layout_width="fill_parent"
|
2010-04-26 18:22:23 -04:00
|
|
|
android:layout_height="wrap_content"
|
2009-11-16 14:26:09 -05:00
|
|
|
android:singleLine="true"
|
|
|
|
android:ellipsize="end"
|
2010-04-26 18:22:23 -04:00
|
|
|
android:textColor="?android:attr/textColorTertiary"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall" />
|
|
|
|
|
2008-10-27 21:04:44 -04:00
|
|
|
</LinearLayout>
|
2010-04-26 18:22:23 -04:00
|
|
|
|
2012-11-06 16:18:00 -05:00
|
|
|
<include layout="@layout/accounts_folders_icons" />
|
2008-10-27 21:04:44 -04:00
|
|
|
</LinearLayout>
|