36 lines
1.1 KiB
XML
36 lines
1.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="@dimen/list_item_height"
|
|
android:paddingBottom="1dp"
|
|
android:paddingLeft="@dimen/list_content_padding"
|
|
android:paddingRight="@dimen/list_content_padding"
|
|
android:paddingTop="1dp">
|
|
|
|
<CheckBox
|
|
android:id="@+id/check_download_item"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:focusable="false"
|
|
android:layout_gravity="center_vertical"/>
|
|
|
|
<TextView
|
|
android:id="@+id/download_item"
|
|
style="@style/ListText.Small"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:layout_gravity="center_vertical"
|
|
tools:text="@string/lorem_ipsum"
|
|
android:maxLines="7"/>
|
|
|
|
<TextView
|
|
android:id="@+id/download_descr"
|
|
style="@style/ListText.Small"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="3dp"
|
|
android:gravity="right"/>
|
|
|
|
</LinearLayout>
|