2014-05-24 02:04:04 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="?attr/expandable_category_color"
|
|
|
|
android:paddingBottom="5dp"
|
2014-06-01 23:45:17 +02:00
|
|
|
android:paddingLeft="3dp"
|
2014-05-24 02:04:04 +02:00
|
|
|
android:paddingRight="4dp"
|
2014-11-17 16:25:17 +01:00
|
|
|
android:paddingTop="5dp">
|
2014-05-24 02:04:04 +02:00
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/explist_indicator"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:paddingLeft="6dp"
|
2014-06-01 23:54:20 +02:00
|
|
|
android:src="@drawable/expandable_category_unpushed" />
|
2014-05-24 02:04:04 +02:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/category_name"
|
2014-05-24 14:02:20 +02:00
|
|
|
style="@style/ListText"
|
2014-05-24 23:08:10 +02:00
|
|
|
android:layout_width="0dp"
|
2014-05-24 02:04:04 +02:00
|
|
|
android:layout_height="wrap_content"
|
2014-06-01 23:54:20 +02:00
|
|
|
android:layout_gravity="center_vertical"
|
2014-05-24 02:04:04 +02:00
|
|
|
android:layout_marginLeft="8dp"
|
|
|
|
android:layout_marginTop="0dp"
|
2014-05-24 23:08:10 +02:00
|
|
|
android:layout_weight="1"
|
2014-11-17 16:25:17 +01:00
|
|
|
android:textSize="18sp" />
|
2014-06-01 23:54:20 +02:00
|
|
|
|
|
|
|
<include layout="@layout/check_item_rel" />
|
|
|
|
|
2014-11-17 16:25:17 +01:00
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2014-05-24 23:08:10 +02:00
|
|
|
android:layout_width="wrap_content"
|
2014-06-01 23:54:20 +02:00
|
|
|
android:layout_height="fill_parent"
|
2014-11-17 16:25:17 +01:00
|
|
|
android:layout_gravity="center_vertical">
|
2014-05-24 23:08:10 +02:00
|
|
|
|
2014-06-01 23:54:20 +02:00
|
|
|
<ImageView
|
|
|
|
android:id="@+id/settings"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginLeft="4dp"
|
|
|
|
android:layout_marginRight="1dp"
|
|
|
|
android:focusable="false"
|
|
|
|
android:src="@drawable/ic_action_settings_dark" />
|
|
|
|
</RelativeLayout>
|
2014-05-24 23:08:10 +02:00
|
|
|
|
2014-05-24 02:04:04 +02:00
|
|
|
</LinearLayout>
|