<?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>
|