endian11
2020-09-10 9f4af8f45a67819d32f1c403025b7090c027c457
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
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="horizontal" android:layout_width="180dp"
    android:layout_height="50dp"
    android:gravity="center_vertical"
    android:background="@drawable/input_bg">
<TextView
    android:layout_width="wrap_content"
    android:layout_height="match_parent"
    android:text="车速"
    android:gravity="center_vertical"
    android:paddingLeft="@dimen/ui_margin_5dp"
    android:paddingRight="@dimen/ui_margin_5dp"
    android:textSize="20sp"
    android:id="@+id/tv_des_et"
    android:background="@drawable/tv_des_bg"
    android:textColor="#FFFFFF"
    />
    <EditText
        android:layout_width="150dp"
        android:layout_height="match_parent"
        android:text="123"
        android:background="@null"
        android:gravity="center"
        android:id="@+id/et_num"
        android:textColor="#FFFFFF"
        android:textSize="20sp"
        />
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:text="km/h"
        android:gravity="center"
        android:textSize="20sp"
        android:id="@+id/tv_unit"
        android:textColor="#888A95"
        />
</LinearLayout>