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