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:paddingLeft="@dimen/list_content_padding"
|
2015-02-18 13:41:48 +01:00
|
|
|
android:paddingRight="@dimen/list_content_padding">
|
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-18 13:41:48 +01:00
|
|
|
android:layout_gravity="center_vertical"
|
2015-02-11 14:18:22 +01:00
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/name"
|
2015-04-17 00:37:39 +02:00
|
|
|
android:textSize="@dimen/default_list_text_size"
|
2015-02-11 14:18:22 +01:00
|
|
|
android:layout_width="wrap_content"
|
2015-03-06 20:16:44 +01:00
|
|
|
android:textColor="?android:textColorPrimary"
|
2015-02-11 14:18:22 +01:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
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"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:maxLines="1"
|
2015-03-06 20:16:44 +01:00
|
|
|
android:textColor="?android:textColorSecondary"
|
2015-04-17 00:37:39 +02:00
|
|
|
android:textSize="@dimen/default_sub_text_size"
|
2015-02-16 16:01:08 +01:00
|
|
|
tools:text="@string/app_version"/>
|
2015-02-11 14:18:22 +01:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/update_descr"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:textColor="@color/color_distance"
|
2015-04-17 00:37:39 +02:00
|
|
|
android:textSize="@dimen/default_sub_text_size"
|
2015-02-11 14:18:22 +01:00
|
|
|
tools:text="@string/lorem_ipsum"
|
|
|
|
android:maxLines="1"/>
|
2015-02-17 14:07:17 +01:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/uptodate_descr"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2015-04-17 00:37:39 +02:00
|
|
|
android:textSize="@dimen/default_sub_text_size"
|
2015-05-07 00:38:07 +02:00
|
|
|
android:textColor="@color/color_ok"
|
2015-02-17 14:07:17 +01:00
|
|
|
tools:text="@string/lorem_ipsum"
|
|
|
|
android:visibility="gone"
|
|
|
|
android:maxLines="1"/>
|
|
|
|
|
2015-02-11 14:18:22 +01:00
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</LinearLayout>
|
2010-06-23 13:35:26 +02:00
|
|
|
|
|
|
|
</LinearLayout>
|