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_centerVertical="true"
|
|
android:layout_marginLeft="16dp"
|
|
android:text="优化项目"
|
|
android:textSize="16dp" />
|
|
|
|
<TextView
|
|
android:id="@+id/numView"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_centerVertical="true"
|
|
android:layout_toLeftOf="@id/groupCheckBox"
|
|
android:text="@string/filenum" />
|
|
|
|
<CheckBox
|
|
android:id="@+id/groupCheckBox"
|
|
android:layout_width="40dp"
|
|
android:layout_height="40dp"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_marginLeft="8dp"
|
|
android:checked="false"
|
|
android:focusable="false"/>
|
|
|
|
|
|
</RelativeLayout> |