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"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:paddingTop="1dp"
|
|
|
|
android:paddingBottom="1dp"
|
|
|
|
android:paddingRight="8dp">
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="fill_parent">
|
|
|
|
|
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/check_download_item"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:focusable="false" />
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/download_item"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:maxLines="7"
|
|
|
|
android:layout_weight="1"
|
|
|
|
style="@style/ListText.Small" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/download_descr"
|
|
|
|
android:layout_marginLeft="3dp"
|
|
|
|
android:gravity="right"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
style="@style/ListText.Small" />
|
2010-06-23 13:35:26 +02:00
|
|
|
|
|
|
|
</LinearLayout>
|