书籍的增删改查

来源:互联网 发布:淘宝最新排名规则 编辑:程序博客网 时间:2024/05/16 05:57

1程序运行图

2.核心代码

Activity-main.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"      android:layout_width="match_parent"      android:layout_height="match_parent"      android:orientation="vertical" >        <Button          android:id="@+id/create_database"          android:layout_width="match_parent"          android:layout_height="wrap_content"          android:text="Create database"           />      <Button           android:id="@+id/add_data"          android:layout_width="match_parent"          android:layout_height="wrap_content"          android:text="Add data"          />      <Button           android:id="@+id/update_data"          android:layout_width="match_parent"          android:layout_height="wrap_content"          android:text="Update data"          />      <Button           android:id="@+id/delete_data"          android:layout_width="match_parent"          android:layout_height="wrap_content"          android:text="Delete data"          />      <Button           android:id="@+id/query_data"          android:layout_width="match_parent"          android:layout_height="wrap_content"          android:text="Query data"          />    </LinearLayout>  

0 0
原创粉丝点击