lmw
2023-06-16 03972ad1d3ce6ffe0be0395c0a4d5dcb4474031f
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
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:background="#C6DDFF">
    <View
        android:layout_width="match_parent"
        android:layout_height="0dp"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintBottom_toBottomOf="@id/iv"
        android:background="@color/white"
        android:layout_marginBottom="55dp"/>
    <ImageView
        android:id="@+id/iv"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:src="@mipmap/call_order"
        android:layout_marginTop="126dp"
        android:layout_marginHorizontal="7dp"
        app:layout_constraintTop_toTopOf="parent"/>
    <TextView
        android:layout_width="126dp"
        android:layout_height="126dp"
        app:layout_constraintTop_toBottomOf="@id/iv"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        android:text="电话叫车"
        android:gravity="center"
        android:textColor="@color/white"
        android:textStyle="bold"
        android:textSize="22sp"
        android:paddingTop="20dp"
        android:id="@+id/tv_call"
        android:background="@drawable/bg_ring_call_order"
        android:elevation="2dp"
        android:drawableTop="@mipmap/call_ordero_phone"/>
</androidx.constraintlayout.widget.ConstraintLayout>