5141f9f6da
This will not change in the layout, it's here just to better maintain the code.
38 lines
1.2 KiB
XML
38 lines
1.2 KiB
XML
<?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: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" />
|
|
|
|
</LinearLayout>
|