zoukankan      html  css  js  c++  java
  • 第二次冲刺 06

    第六天冲刺

    昨天主要做了登陆页面的一些条件,今天要做主页

    下面是一些代码

    <?xml version="1.0" encoding="utf-8"?>

        <TableLayout xmlns:android="http://schemas.android.com/apk/res/android"

            android:id="@+id/tableLayout1"

            android:layout_width="fill_parent"

            android:layout_height="fill_parent"

            android:background="@drawable/mm" >

     

            <TableRow

                android:id="@+id/tableRow1"

                android:layout_width="wrap_content"

                android:layout_height="wrap_content" >

     

                <TextView

                    android:id="@+id/textView7"

                    android:layout_width="wrap_content"

                    android:layout_height="wrap_content"

                    android:layout_weight="1"

                    android:text="请选择要查询的专业:"

                   

                    android:textSize="20dp"/>

     

                <Spinner

                    android:id="@+id/spinner1"

                    android:layout_width="wrap_content"

                    android:layout_height="wrap_content"

                    android:layout_weight="3"

                    android:entries="@array/ctype" />

            </TableRow>

     

            <LinearLayout

                android:id="@+id/linearLayout1"

                android:layout_width="wrap_content"

                android:layout_height="wrap_content"

                android:layout_weight="0.08" >

     

                <Button

                    android:id="@+id/button1"

                    android:layout_width="wrap_content"

                    android:layout_height="wrap_content"

                    android:text="确定" />

            </LinearLayout>

     

        </TableLayout>   

       

     

     

  • 相关阅读:
    activiti实战系列之动态表单 formService 自定义变量类型
    js向一个数组中插入元素的几个方法-性能比较
    Mac系统安装和配置tomcat步骤详解
    Spring注解之@validated的使用
    Spring注解之@Lazy注解
    centos命令行系列之升级glibc到
    docker实战系列之docker 端口映射错误解决方法
    centos命令行系列之centos6防火墙的关闭以及开启
    docker实战系列之搭建rabbitmq
    运营型模型
  • 原文地址:https://www.cnblogs.com/lipengpengpeng/p/5606819.html
Copyright © 2011-2022 走看看