lmw
2024-06-07 4264d859bb9f6cbc4c069a9350c917f1b23009dd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent"
    android:layout_height="match_parent">
 
    <View
        android:id="@+id/view_top_zc"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_above="@+id/ll_main_top"/>
 
    <LinearLayout
        android:id="@+id/ll_main_top"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        android:layout_marginBottom="20dp"
        android:layout_marginStart="14dp"
        android:layout_marginEnd="14dp"
        android:background="@drawable/write_back_radio_15"
        android:layout_alignParentBottom="true">
 
       <TextView
           android:id="@+id/tv_pc"
           android:layout_width="match_parent"
           android:layout_height="50dp"
           android:gravity="center"
           android:textStyle="bold"
           android:textColor="@color/black_333333"
           android:text="不包车"/>
 
        <include layout="@layout/include_line"/>
 
        <TextView
            android:id="@+id/tv_zc"
            android:layout_width="match_parent"
            android:layout_height="50dp"
            android:gravity="center"
            android:textStyle="bold"
            android:textColor="@color/black_333333"
            android:text="包车"/>
 
 
 
    </LinearLayout>
 
</RelativeLayout>