OsmAnd/OsmAnd/res/layout/drawer_list_layer.xml

31 lines
1.4 KiB
XML
Raw Normal View History

2014-10-21 19:47:47 +02:00
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
2014-10-23 12:45:06 +02:00
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="48dp"
2014-10-24 14:50:53 +02:00
android:paddingLeft="16dp"
android:paddingRight="16dp">
<ImageView android:id="@+id/icon"
2014-10-24 15:22:34 +02:00
android:layout_marginTop="8dp"
android:layout_marginBottom="8dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
2014-10-24 15:22:34 +02:00
<LinearLayout android:layout_marginLeft="11dp"
2014-10-23 12:45:06 +02:00
android:layout_width="0dp"
android:layout_weight="1"
2014-10-23 12:45:06 +02:00
android:layout_height="wrap_content">
<TextView android:id="@+id/title"
android:textSize="18sp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
2014-10-23 12:45:06 +02:00
<TextView android:id="@+id/descr"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
</LinearLayout>
2014-10-23 12:45:06 +02:00
<CheckBox android:id="@+id/check_item"
android:focusable="false"
android:layout_marginLeft="11dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
2014-10-21 19:47:47 +02:00
</LinearLayout>