zoukankan      html  css  js  c++  java
  • 团队冲刺第三天

    今天完成添加页面

    首先是页面布局

    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"
    tools:context=".AddorderActivity"
    android:orientation="vertical"
    android:gravity="center">
    <TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="添加"
    android:textSize="50dp"
    ></TextView>
    <LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal"
    android:layout_marginTop="50dp">
    <TextView
    android:layout_width="100dp"
    android:layout_height="wrap_content"
    android:text="商品名称"
    android:textSize="20dp"
    ></TextView>
    <EditText
    android:id="@+id/goods"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"></EditText>
    </LinearLayout>
    <LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal"
    android:layout_marginTop="50dp">
    <TextView
    android:layout_width="100dp"
    android:layout_height="wrap_content"
    android:text="估价"
    android:textSize="20dp"
    ></TextView>
    <EditText
    android:id="@+id/price"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"

    ></EditText>
    </LinearLayout>

    </LinearLayout>
  • 相关阅读:
    [luogu] P1440 求m区间内的最小值
    [NOI2014]起床困难综合症
    [SDOI2009]地图复原
    [USACO08JAN] Cow Contest
    【洛谷P5049】旅行(数据加强版)
    【NOIP2015】真题回顾
    【NOIP2014】真题回顾
    【UVA11987】Almost Union-Find
    【UVA11988】破损的键盘
    【UVA11134】传说中的车
  • 原文地址:https://www.cnblogs.com/zyljal/p/14891903.html
Copyright © 2011-2022 走看看