43 lines
1.5 KiB
XML
43 lines
1.5 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="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:gravity="center_vertical"
|
||
|
android:orientation="horizontal"
|
||
|
android:padding="8dp">
|
||
|
|
||
|
<LinearLayout
|
||
|
android:layout_width="0dp"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_weight="1"
|
||
|
android:gravity="center_vertical"
|
||
|
android:orientation="vertical">
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/tv_name"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:padding="5dp"
|
||
|
android:textColor="@color/black"
|
||
|
android:textSize="@dimen/text_18"
|
||
|
tools:text="测试内容" />
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/tv_content"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:padding="5dp"
|
||
|
android:textColor="@color/black"
|
||
|
android:textSize="@dimen/text_18"
|
||
|
tools:text="测试内容" />
|
||
|
</LinearLayout>
|
||
|
|
||
|
<CheckBox
|
||
|
android:id="@+id/cb_choose"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_marginLeft="5dp"
|
||
|
android:layout_marginRight="10dp"
|
||
|
android:button="@drawable/cb_hook" />
|
||
|
</LinearLayout>
|