zoukankan      html  css  js  c++  java
  • 十天冲刺第五天

    订单添加与数据库学习

    <?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>
  • 相关阅读:
    mysql主从复制的一些东西的整理
    (转载)[我只是认真]聊聊工匠情怀
    Redis运维的一些常用的命令总结
    关于mysql和Apache以及nginx的监控脚本怎么写会比较好的记录
    使用linux的nc来进行文件的传输
    nc检测端口是否正常服务的一个命令
    二维数组去除重复值和array_unique函数
    MySQL的备份的一些策略和方法的总结
    一些容易忘记的小知识点
    关于php多线程的记录
  • 原文地址:https://www.cnblogs.com/runningup/p/12794869.html
Copyright © 2011-2022 走看看