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>
  • 相关阅读:
    第一次作业-编译原理概述
    文法和语言总结与梳理(作业四)
    作业三
    作业二
    编译原理概述
    编译原理 作业九
    编译原理 作业八
    编译原理 作业七
    编译原理 作业六
    编译原理 作业五
  • 原文地址:https://www.cnblogs.com/zyljal/p/14891903.html
Copyright © 2011-2022 走看看