2008-10-27 21:04:44 -04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2010-04-26 15:50:25 -04:00
|
|
|
<LinearLayout
|
2011-02-02 22:42:45 -05:00
|
|
|
android:id="@+id/accounts_item_layout"
|
2008-10-27 21:04:44 -04:00
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2013-02-12 04:04:52 -05:00
|
|
|
android:layout_width="match_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 15:50:25 -04:00
|
|
|
android:orientation="horizontal"
|
2010-05-11 22:52:10 -04:00
|
|
|
android:descendantFocusability="blocksDescendants"
|
2013-02-12 04:04:52 -05:00
|
|
|
android:gravity="center_vertical">
|
2010-04-26 14:26:10 -04:00
|
|
|
|
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"
|
2012-09-10 10:40:20 -04:00
|
|
|
android:layout_marginLeft="8dip"
|
2013-02-12 04:04:52 -05:00
|
|
|
android:layout_marginRight="6dip" />
|
2010-04-26 14:26:10 -04:00
|
|
|
|
2010-05-11 22:52:10 -04:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
2010-04-26 15:50:25 -04:00
|
|
|
android:orientation="vertical"
|
|
|
|
android:gravity="center_vertical"
|
2010-05-11 22:52:10 -04:00
|
|
|
android:paddingLeft="1dip" >
|
2010-04-26 15:50:25 -04:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/description"
|
2013-02-12 04:04:52 -05:00
|
|
|
android:layout_width="match_parent"
|
2010-04-26 15:50:25 -04:00
|
|
|
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"
|
2013-02-12 04:04:52 -05:00
|
|
|
android:layout_width="match_parent"
|
2010-04-26 15:50:25 -04:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:textColor="?android:attr/textColorSecondary"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
2013-02-12 04:04:52 -05:00
|
|
|
|
2012-11-06 16:17:31 -05:00
|
|
|
<include layout="@layout/accounts_folders_icons" />
|
2013-06-30 16:29:37 -04:00
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/folder_button_wrapper"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
>
|
|
|
|
|
|
|
|
<View
|
|
|
|
android:layout_width="1dp"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_marginLeft="4dip"
|
|
|
|
android:layout_marginRight="4dip"
|
|
|
|
android:background="?attr/compatDividerVertical"
|
|
|
|
android:layout_alignParentTop="true"/>
|
|
|
|
<ImageButton
|
|
|
|
android:id="@+id/folders"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:focusable="false"
|
|
|
|
android:layout_marginRight="3dip"
|
|
|
|
android:src="?attr/iconFolder"
|
|
|
|
android:background="?attr/compatSelectableItemBackground"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:padding="8dp"
|
|
|
|
android:paddingLeft="16dp"
|
|
|
|
android:paddingRight="16dp"
|
|
|
|
/>
|
2013-02-12 04:04:52 -05:00
|
|
|
|
2010-04-26 15:50:25 -04:00
|
|
|
</LinearLayout>
|
2013-06-30 16:29:37 -04:00
|
|
|
</LinearLayout>
|