zoukankan      html  css  js  c++  java
  • SCRUM第五天

    订单添加与数据库学习

    复制代码
    <?xml version="1.0" encoding="utf-8"?>
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:app="http://schemas.android.com/apk/res-auto"
        xmlns:tools="http://schemas.android.com/tools"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
    
        android:orientation="vertical">
    
        <TextView
            android:id="@+id/textView10"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="外卖中心"
            android:textColor="#fff"
            android:gravity="center"
            android:textSize="25sp"
            android:background="@color/black"
            />
        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="vertical"
            android:layout_margin="10dp">
    
            <Button
                android:id="@+id/buttonShop_Inside"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:background="#ff0033"
                android:text="我要点外卖"
                android:textSize="20sp"
                android:textColor="#fff"/>
            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:orientation="horizontal">
                <TextView
                    android:id="@+id/textView11"
                    android:layout_width="80dp"
                    android:layout_height="50dp"
                    android:text="订单总览"
                    android:gravity="center"
                    android:textSize="15sp"
                    android:background="#f83"
                    android:layout_marginTop="10dp"
                    android:layout_marginLeft="50dp"/>
                <androidx.appcompat.widget.AppCompatSpinner
                    android:layout_width="80dp"
                    android:layout_height="50dp"
                    android:layout_marginLeft="100dp"
                    android:layout_marginTop="10dp"
                    android:id="@+id/spinner_shop"
                    >
                </androidx.appcompat.widget.AppCompatSpinner>
    
            </LinearLayout>
    
    
    
        </LinearLayout>
    
        <ListView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_margin="5dp"
            android:id="@+id/listView_shop"
            ></ListView>
    </LinearLayout>
    复制代码
  • 相关阅读:
    使用redis,zookeeper实现分布式锁
    基于线程池的多线程售票demo(原创)
    springboot全局异常处理
    IDEA2017.3.4破解方式及lombok图文配置详解
    LeetCode 120——三角形最小路径和
    LeetCode 1——两数之和
    LeetCode 445——两数相加 II
    在本地电脑使用远程服务器的图形界面——包括 MATLAB、PyCharm 等各种软件
    LeetCode 141——环形链表
    LeetCode 142——环形链表 II
  • 原文地址:https://www.cnblogs.com/w669399221/p/13084284.html
Copyright © 2011-2022 走看看