You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.2 KiB
XML
43 lines
1.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:orientation="horizontal"
|
|
android:layout_marginTop="2dp"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="44dp"
|
|
android:background="#DEE3E6">
|
|
|
|
<TextView
|
|
android:id="@+id/item_index"
|
|
android:layout_width="71dp"
|
|
android:layout_height="match_parent"
|
|
android:text="01"
|
|
style="@style/item_text_style" />
|
|
|
|
<View
|
|
android:layout_width="2dp"
|
|
android:layout_height="match_parent"
|
|
android:background="@color/white" />
|
|
|
|
<TextView
|
|
android:id="@+id/item_info"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="1"
|
|
android:text="01"
|
|
style="@style/item_text_style" />
|
|
|
|
<View
|
|
android:layout_width="2dp"
|
|
android:layout_height="match_parent"
|
|
android:background="@color/white" />
|
|
|
|
<TextView
|
|
android:id="@+id/item_buttom"
|
|
android:layout_width="76dp"
|
|
android:layout_height="match_parent"
|
|
android:text="删除"
|
|
android:textColor="#E71717"
|
|
style="@style/item_text_style" />
|
|
|
|
|
|
</LinearLayout> |