36 lines
1.1 KiB
XML
36 lines
1.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:padding="8dp">
|
|
|
|
|
|
<TextView
|
|
android:id="@+id/nameView"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="16dp"
|
|
android:text="优化项目"
|
|
android:textSize="16dp" />
|
|
|
|
<TextView
|
|
android:id="@+id/descriptionView"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_below="@id/nameView"
|
|
android:layout_alignLeft="@id/nameView"
|
|
android:layout_marginTop="5dp"
|
|
android:layout_toLeftOf="@id/itemCheckBox"
|
|
android:text="描述" />
|
|
|
|
<CheckBox
|
|
android:id="@+id/itemCheckBox"
|
|
android:layout_width="40dp"
|
|
android:layout_height="40dp"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_centerVertical="true"
|
|
android:checked="true" />
|
|
|
|
|
|
</RelativeLayout> |