2008-10-28 01:04:44 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2010-04-26 19:50:25 +00:00
|
|
|
<LinearLayout
|
2011-02-03 03:42:45 +00:00
|
|
|
android:id="@+id/accounts_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 19:50:25 +00:00
|
|
|
android:orientation="horizontal"
|
2010-04-26 18:26:10 +00:00
|
|
|
android:paddingRight="6dip"
|
2010-05-02 04:54:09 +00:00
|
|
|
android:paddingBottom="2dip"
|
2010-05-12 02:52:10 +00:00
|
|
|
android:descendantFocusability="blocksDescendants"
|
2011-03-19 17:36:58 +00:00
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:background="#ccc" >
|
2010-04-26 18:26:10 +00:00
|
|
|
|
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"
|
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"
|
2011-03-19 17:36:58 +00:00
|
|
|
android:layout_alignParentLeft="true"
|
|
|
|
android:background="@android:color/transparent" />
|
2010-04-26 18:26:10 +00:00
|
|
|
|
2010-05-12 02:52:10 +00:00
|
|
|
|
2010-04-26 19:50:25 +00:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:layout_weight="1"
|
2010-05-12 02:52:10 +00:00
|
|
|
android:orientation="horizontal"
|
|
|
|
android:gravity="center_vertical"
|
2010-12-28 09:11:10 +00:00
|
|
|
android:paddingLeft="6dip" >
|
2010-05-12 02:52:10 +00:00
|
|
|
|
|
|
|
<ImageButton
|
|
|
|
android:id="@+id/folders"
|
2012-09-13 05:56:24 +00:00
|
|
|
android:gravity="center_vertical"
|
2010-05-12 02:52:10 +00:00
|
|
|
android:focusable="false"
|
2012-09-13 05:56:24 +00:00
|
|
|
android:layout_marginRight="3dip"
|
|
|
|
android:background="?attr/iconFolder"
|
2010-05-12 02:52:10 +00:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
/>
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
2010-04-26 19:50:25 +00:00
|
|
|
android:orientation="vertical"
|
|
|
|
android:gravity="center_vertical"
|
2010-05-12 02:52:10 +00:00
|
|
|
android:paddingLeft="1dip" >
|
2010-04-26 19:50:25 +00:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/description"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:textColor="?android:attr/textColorPrimary"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/email"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:textColor="?android:attr/textColorSecondary"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
2010-05-12 02:52:10 +00:00
|
|
|
</LinearLayout>
|
2012-11-06 21:17:31 +00:00
|
|
|
<include layout="@layout/accounts_folders_icons" />
|
2010-04-26 19:50:25 +00:00
|
|
|
</LinearLayout>
|