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
<?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">
 
    <LinearLayout
        android:layout_width="match_parent"
        android:background="@color/write"
        android:layout_height="44dp">
 
        <EditText
            android:id="@+id/et_search_top"
            android:maxLines="1"
            android:background="@drawable/gray_edit_cricle"
            android:layout_width="match_parent"
            android:layout_marginStart="16dp"
            android:drawableStart="@mipmap/icon_search"
            android:paddingStart="8dp"
            android:imeOptions="actionSearch"
            android:inputType="text"
            android:drawablePadding="8dp"
            android:layout_marginEnd="16dp"
            android:layout_marginTop="8dp"
            android:textSize="13dp"
            android:layout_marginBottom="8dp"
            android:hint="乘客电话、司机电话、车牌号"
            android:layout_height="match_parent"/>
 
    </LinearLayout>
 
</RelativeLayout>