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>
  • 相关阅读:
    touch测试
    JS动画代码
    前端css、javascript在线工具
    横向广告(商品)滚动
    写点js的小函数(一)
    HTML5 css reset
    JS新API标准 地理定位(navigator.geolocation)
    写点js的小函数(二、文本框的提示)
    传说中的comet(ajax版)?
    lhgdialog 4.2.0 正式版发布
  • 原文地址:https://www.cnblogs.com/zyljal/p/14891903.html
Copyright © 2011-2022 走看看