5.16作业

5.16作业

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_main"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context="com.example.zhdn.sql_homework.MainActivity">

	<EditText
   android:layout_width="match_parent"
   android:layout_height="wrap_content"
   android:hint="请输入..."
   android:textSize="30sp"
   android:id="@+id/et_edit"/>
 <LinearLayout
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:orientation="horizontal">
   <Button
       android:layout_width="wrap_content"
       android:layout_height="wrap_content"
       android:layout_weight="1"
       android:text="增加新纪录"
       android:textSize="25sp"
       android:id="@+id/btn_add"/>
   <Button
       android:layout_width="wrap_content"
       android:layout_height="wrap_content"
       android:layout_weight="1"
       android:text="删除第一条记录"
       android:textSize="25sp"
       android:id="@+id/btn_del"/>

</LinearLayout>
<ListView
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:id="@+id/listview">

</ListView>
</LinearLayout>
posted @ 2017-05-16 14:36  yeech  阅读(101)  评论(0编辑  收藏  举报