2011-04-15 01:01:09 +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"
|
|
|
|
android:layout_width="fill_parent"
|
2015-02-09 13:43:37 +01:00
|
|
|
android:layout_height="wrap_content"
|
2015-08-24 14:01:46 +02:00
|
|
|
android:minHeight="@dimen/list_item_height"
|
|
|
|
android:paddingLeft="16dp"
|
|
|
|
android:paddingRight="10dp">
|
2011-04-15 01:01:09 +02:00
|
|
|
|
2014-11-17 16:25:17 +01:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/download_tag"
|
|
|
|
android:gravity="center_vertical"
|
2015-02-09 13:43:37 +01:00
|
|
|
android:layout_gravity="center_vertical"
|
2014-11-17 16:25:17 +01:00
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
2015-04-17 00:37:39 +02:00
|
|
|
android:textSize="@dimen/default_list_text_size"/>
|
2011-04-15 01:01:09 +02:00
|
|
|
|
2014-11-17 16:25:17 +01:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/download_descr"
|
|
|
|
android:layout_marginLeft="3dp"
|
|
|
|
android:gravity="center_vertical"
|
2015-02-09 13:43:37 +01:00
|
|
|
android:layout_gravity="center_vertical"
|
2015-02-10 00:01:48 +01:00
|
|
|
android:layout_width="90dp"
|
|
|
|
android:maxLines="2"
|
2014-11-17 16:25:17 +01:00
|
|
|
android:layout_height="wrap_content"
|
2015-04-17 00:37:39 +02:00
|
|
|
android:textSize="@dimen/default_desc_text_size"/>
|
2011-04-15 01:01:09 +02:00
|
|
|
|
2015-02-10 00:01:48 +01:00
|
|
|
</LinearLayout>
|