2010-06-23 13:35:26 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2014-11-17 16:25:17 +01:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2015-02-06 13:18:18 +01:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="fill_parent"
|
2015-02-09 13:43:37 +01:00
|
|
|
android:layout_height="wrap_content"
|
2015-02-11 14:18:22 +01:00
|
|
|
android:background="?attr/expandable_list_item_background"
|
2015-02-09 13:43:37 +01:00
|
|
|
android:minHeight="@dimen/list_item_height"
|
2015-02-06 13:18:18 +01:00
|
|
|
android:paddingBottom="1dp"
|
|
|
|
android:paddingLeft="@dimen/list_content_padding"
|
|
|
|
android:paddingRight="@dimen/list_content_padding"
|
|
|
|
android:paddingTop="1dp">
|
2014-11-17 16:25:17 +01:00
|
|
|
|
2015-02-06 13:18:18 +01:00
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/check_download_item"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical"
|
2015-02-11 14:18:22 +01:00
|
|
|
android:layout_marginRight="@dimen/favorites_icon_right_margin"
|
|
|
|
android:focusable="false"/>
|
2014-11-17 16:25:17 +01:00
|
|
|
|
2015-02-11 14:18:22 +01:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="fill_parent"
|
2015-02-06 13:18:18 +01:00
|
|
|
android:layout_height="wrap_content"
|
2015-02-11 14:18:22 +01:00
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/name"
|
|
|
|
style="@style/ListText.Small"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:maxLines="1"
|
|
|
|
tools:text="@string/lorem_ipsum"/>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="horizontal">
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/download_descr"
|
|
|
|
style="@style/ListText.Small"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:maxLines="1"
|
|
|
|
android:textSize="12sp"
|
|
|
|
tools:text="@string/lorem_ipsum"/>
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/update_descr"
|
|
|
|
style="@style/ListText.Small"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:textColor="@color/color_distance"
|
|
|
|
android:textSize="12sp"
|
|
|
|
tools:text="@string/lorem_ipsum"
|
|
|
|
android:maxLines="1"/>
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</LinearLayout>
|
2010-06-23 13:35:26 +02:00
|
|
|
|
|
|
|
</LinearLayout>
|