zoukankan      html  css  js  c++  java
  • 第一阶段个人冲刺博客第七天

    今天做了空教室查询界面,附上代码和运行截图。

    <?xml version="1.0" encoding="utf-8"?>
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        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"
        android:background="@mipmap/jiaoshipicture"
        android:orientation="vertical">
    
        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:gravity="center_horizontal"
            android:text="空教室查询界面" />
    
        <Spinner
            android:id="@+id/工作周"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:entries="@array/ctype"
            android:prompt="@string/app_name"></Spinner>
    
        <Spinner
            android:id="@+id/节数"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:entries="@array/ccourse"
            android:prompt="@string/app_name"></Spinner>
    
        <EditText
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:hint="请输入您想要查询的节数" />
    
        <Button
            android:id="@+id/btnCreate"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:baselineAligned="false"
            android:text="确认"
            android:textColor="#E91E63" />
    
        <ScrollView
            android:layout_width="wrap_content"
            android:layout_height="match_parent">
    
            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:orientation="vertical" />
        </ScrollView>
    
    </LinearLayout>
    

      

  • 相关阅读:
    MySQL之ORM
    MySQL之索引补充
    MySQL存储过程
    c primer plus 7编程练习
    c语言中统计单词数目程序
    c语言统计输入字符数及行数
    c语言中getchar()、putchar()函数例子
    c primer plus 6编程练习
    c语言 %c 一次输出多个字符 (特殊程序)
    c语言 复合赋值运算符的优先级低于算术运算符
  • 原文地址:https://www.cnblogs.com/cuijunfeng/p/10939871.html
Copyright © 2011-2022 走看看