• 团队冲刺第三天


    今天完成添加页面

    首先是页面布局

    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>
  • 相关阅读:
    网站性能优化(1)
    网站性能优化(2)
    mac终端使用
    CSS尺寸 ScrollTop、ScrollHeight、ClientHeight、OffsetHeight总结(四)
    Canvas 与 SVG 的比较
    tsconfig.json配置详解
    Rxjs基本原理
    HTML总结
    盒模型之BFC与文档流对比(二)
    JS深拷贝与浅拷贝
  • 原文地址:https://www.cnblogs.com/zyljal/p/14891903.html
Copyright © 2020-2023  润新知