zoukankan      html  css  js  c++  java
  • 结对项目(四)日程类型界面

    创建日程类型界面

        <EditText
            android:id="@+id/typename"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_weight="1" >
    
            <requestFocus />
        </EditText>
    
    
        <Button
            android:id="@+id/addtype"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="添加类型" />
    
    </LinearLayout>
    
    <TextView
        android:id="@+id/textView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="现有类型" />
    
    <ListView
        android:id="@+id/displytype"
        android:layout_width="match_parent"
        android:layout_height="274dp"
        android:layout_weight="0.62" >
    
    </ListView>
    
    <Button
        android:id="@+id/huizhu"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="返回主界面" />
    

  • 相关阅读:
    练习题
    练习题
    作业 —— day77
    解决:Django项目no such table django_session
    解决:A server error occurred. Please contact the administrator
    作业24
    元类
    类的内置方法
    反射
    考试错题
  • 原文地址:https://www.cnblogs.com/liangyap/p/7045284.html
Copyright © 2011-2022 走看看