lmw
2023-06-20 7e4a923b472a1ffb9d6deeb80302551ba4178ca3
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
<?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"
    android:id="@+id/bg"
    xmlns:app="http://schemas.android.com/apk/res-auto">
    <LinearLayout
        android:layout_width="110dp"
        android:layout_height="105dp"
        android:orientation="vertical"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        android:paddingTop="5dp"
        android:layout_marginTop="100dp"
        android:layout_marginEnd="10dp"
 
        android:background="@mipmap/bg_pop">
        <TextView
            android:id="@+id/tv_create_order"
            android:layout_width="match_parent"
            android:layout_height="50dp"
            android:text="创建"
            android:textColor="@color/white"
            android:textSize="15sp"
            android:textStyle="bold"
            android:drawableStart="@mipmap/menu_add"
            android:paddingStart="13dp"
            android:gravity="center"/>
        <View
            android:layout_width="match_parent"
            android:layout_height="1dp"
            android:alpha="0.4"
            android:background="#979797"/>
        <TextView
            android:id="@+id/tv_scan"
            android:layout_width="match_parent"
            android:layout_height="50dp"
            android:text="扫码下单"
            android:textColor="@color/white"
            android:textSize="15sp"
            android:textStyle="bold"
            android:drawableStart="@mipmap/menu_scan"
            android:paddingStart="13dp"
            android:gravity="center"/>
    </LinearLayout>
</androidx.constraintlayout.widget.ConstraintLayout>