• 团队冲刺第三天


    今天完成添加页面

    首先是页面布局

    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>
  • 相关阅读:
    struts1.2一些知识
    iText的用法
    <action里的input的作用
    CSS超链接样式常见四种状态控制
    Win7系统IIS7+Tomcat7集成
    Marquee 使用方法详解
    JAVA中String与StringBuffer的区别
    2020 8 31 每日总结
    2020 10 1
    2020 9 30
  • 原文地址:https://www.cnblogs.com/zyljal/p/14891903.html
Copyright © 2020-2023  润新知