2010-05-21 08:43:01 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2015-02-04 14:24:32 +01:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2014-11-17 16:25:17 +01:00
|
|
|
android:layout_width="fill_parent"
|
2015-02-09 13:43:37 +01:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:minHeight="@dimen/list_item_height"
|
2014-11-17 16:25:17 +01:00
|
|
|
android:orientation="horizontal"
|
2015-03-06 19:37:54 +01:00
|
|
|
android:background="?attr/expandable_list_item_background"
|
2015-04-07 23:05:52 +02:00
|
|
|
android:paddingLeft="@dimen/list_content_padding">
|
2010-05-31 15:59:13 +02:00
|
|
|
|
2014-11-17 16:25:17 +01:00
|
|
|
<ImageView
|
|
|
|
android:id="@+id/folder_icon"
|
2015-04-01 23:18:48 +02:00
|
|
|
android:layout_width="@dimen/standard_icon_size"
|
2015-02-09 13:43:37 +01:00
|
|
|
android:layout_gravity="center_vertical"
|
2015-04-01 23:18:48 +02:00
|
|
|
android:layout_height="@dimen/standard_icon_size"
|
|
|
|
android:layout_marginRight="8dp"/>
|
2014-11-17 16:25:17 +01:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/folder_label"
|
2015-09-04 18:29:28 +02:00
|
|
|
android:textSize="@dimen/default_list_text_size"
|
2015-02-09 13:43:37 +01:00
|
|
|
android:layout_gravity="center_vertical"
|
2015-02-04 14:24:32 +01:00
|
|
|
android:textColor="?android:textColorPrimary"
|
2014-11-17 16:25:17 +01:00
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
2015-02-04 14:24:32 +01:00
|
|
|
android:layout_weight="1"
|
2015-10-28 10:47:26 +01:00
|
|
|
android:layout_marginTop="4dp"
|
|
|
|
android:layout_marginBottom="4dp"
|
2015-04-07 23:05:52 +02:00
|
|
|
tools:text="@string/lorem_ipsum"
|
|
|
|
android:layout_marginRight="@dimen/list_content_padding"/>
|
|
|
|
|
2014-11-17 16:25:17 +01:00
|
|
|
<ImageView
|
2015-04-07 23:05:52 +02:00
|
|
|
android:id="@+id/options"
|
2015-04-03 17:29:55 +02:00
|
|
|
android:layout_width="@dimen/list_item_height"
|
2015-02-09 13:43:37 +01:00
|
|
|
android:layout_gravity="center_vertical"
|
2015-04-03 17:29:55 +02:00
|
|
|
android:layout_height="@dimen/list_item_height"
|
|
|
|
android:scaleType="center"
|
2015-04-07 23:05:52 +02:00
|
|
|
android:visibility="gone"
|
2015-04-03 17:22:00 +02:00
|
|
|
android:background="?attr/dashboard_button"
|
2015-04-24 23:20:54 +02:00
|
|
|
android:src="@drawable/ic_overflow_menu_white"/>
|
2010-05-31 15:59:13 +02:00
|
|
|
</LinearLayout>
|