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>
    复制代码
  • 相关阅读:
    Android(java)学习笔记15:匿名内部类实现多线程
    Android(java)学习笔记14:Java线程池
    Android(java)学习笔记13:线程组的概述和使用
    Android(java)学习笔记12:线程的状态转换图以及常见执行情况
    win2012R2打Windows8.1-KB2919355 问题
    win2012R2打Windows8.1-KB2919355 问题
    P2404
    P2404
    P2404
    抽签
  • 原文地址:https://www.cnblogs.com/w669399221/p/13084284.html
Copyright © 2011-2022 走看看