Fix layout.
This commit is contained in:
parent
c11ae722f2
commit
94f5db5376
1 changed files with 44 additions and 27 deletions
|
@ -1,31 +1,48 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
|
||||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
android:orientation="horizontal"
|
xmlns:tools="http://schemas.android.com/tools"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="48dp"
|
android:layout_height="wrap_content"
|
||||||
android:paddingLeft="16dp"
|
android:minHeight="48dp"
|
||||||
android:paddingRight="16dp">
|
android:orientation="horizontal"
|
||||||
<ImageView android:id="@+id/icon"
|
android:paddingLeft="16dp"
|
||||||
android:layout_marginTop="8dp"
|
android:paddingRight="16dp">
|
||||||
android:layout_marginBottom="8dp"
|
|
||||||
android:layout_width="wrap_content"
|
<ImageView
|
||||||
android:layout_height="wrap_content"/>
|
android:id="@+id/icon"
|
||||||
<LinearLayout android:layout_marginLeft="11dp"
|
android:layout_width="wrap_content"
|
||||||
android:layout_width="0dp"
|
android:layout_height="wrap_content"
|
||||||
android:layout_weight="1"
|
android:layout_marginBottom="8dp"
|
||||||
android:layout_height="wrap_content">
|
android:layout_marginTop="8dp"
|
||||||
<TextView android:id="@+id/title"
|
android:layout_gravity="center_vertical"
|
||||||
android:textSize="18sp"
|
tools:src="@drawable/ic_action_info_dark" />
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"/>
|
<LinearLayout
|
||||||
<TextView android:id="@+id/descr"
|
android:layout_width="0dp"
|
||||||
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_height="wrap_content"/>
|
android:layout_marginLeft="11dp"
|
||||||
|
android:layout_weight="1"
|
||||||
|
android:layout_gravity="center_vertical" >
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/title"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:textSize="18sp"
|
||||||
|
tools:text="Some title text" />
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/descr"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content" />
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
<CheckBox android:id="@+id/check_item"
|
|
||||||
android:focusable="false"
|
<CheckBox
|
||||||
android:layout_marginLeft="11dp"
|
android:id="@+id/check_item"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"/>
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginLeft="11dp"
|
||||||
|
android:focusable="false"
|
||||||
|
android:layout_gravity="center_vertical" />
|
||||||
|
|
||||||
</LinearLayout>
|
</LinearLayout>
|
Loading…
Reference in a new issue