当前位置:   article > 正文

Android Studio设计基于云平台的教学信息系统APP(二)_androidstudio信息系统

androidstudio信息系统

本文章是上一篇的续写,新增了对云平台表数据信息的功能,实现了删除、修改和添加

环境配置搭建等前期需要的东西不再阐述,有需求的请看上一篇内容

但由于我写这篇文章的时候,我的免费试用云数据库已经过期了,因此没有最终效果图供参考


目录

一、Android Studio界面设计部分

(一)信息管理主界面

1、activity_student_manage.xml

2、activity_student_list_item.xml

(二)信息修改和添加界面

1、修改界面activity_student_edit.xml

2、添加界面activity_student_add.xml

二、Android Studio与云数据库交互部分

(一)连接部分

1、DbOpenHelper.java

2、XXInfo.java

3、XXInfoDao.java

4、LvXXInfoAdapter.java

(二)界面对应java文件部分

1、Student_Manage.java

2、StudentAdd.java

3、student_edit.java

三、一些问题


一、Android Studio界面设计部分

该界面设计是xml文件

(一)信息管理主界面

在信息管理界面中,不仅能显示已存在的表信息,还能在其基础上进行删除、修改和添加功能

其中修改和添加需要分别设计一个新的界面用于编辑信息,在后文会提到

1、activity_student_manage.xml

代码:

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout
  3. xmlns:android="http://schemas.android.com/apk/res/android"
  4. xmlns:app="http://schemas.android.com/apk/res-auto"
  5. xmlns:tools="http://schemas.android.com/tools"
  6. android:layout_width="match_parent"
  7. android:layout_height="match_parent"
  8. android:orientation="vertical"
  9. tools:context=".Student_Manage">
  10. <TextView
  11. android:layout_width="match_parent"
  12. android:layout_height="wrap_content"
  13. android:layout_marginTop="15dp"
  14. android:layout_marginLeft="15dp"
  15. android:layout_marginRight="15dp"
  16. android:gravity="center"
  17. android:text="成绩信息"
  18. android:textSize="30sp" />
  19. <RelativeLayout
  20. android:layout_width="match_parent"
  21. android:layout_height="wrap_content"
  22. android:layout_marginLeft="15dp"
  23. android:layout_marginRight="15dp"
  24. android:layout_marginTop="7dp">
  25. <ImageView
  26. android:id="@+id/btn_return"
  27. android:layout_width="50dp"
  28. android:layout_height="50dp"
  29. android:src="@drawable/bacl_foreground" />
  30. <ImageView
  31. android:id="@+id/btn_add"
  32. android:layout_width="50dp"
  33. android:layout_height="50dp"
  34. android:layout_marginLeft="300dp"
  35. android:src="@drawable/add1_foreground" />
  36. </RelativeLayout>
  37. <LinearLayout
  38. android:layout_width="match_parent"
  39. android:layout_height="wrap_content"
  40. android:layout_marginTop="10dp"
  41. android:layout_marginLeft="15dp"
  42. android:layout_marginRight="15dp"
  43. android:orientation="horizontal">
  44. <TextView
  45. android:id="@+id/xs_bj"
  46. android:layout_width="wrap_content"
  47. android:layout_height="wrap_content"
  48. android:text="班级"
  49. android:textSize="20sp" />
  50. <TextView
  51. android:id="@+id/xs_xh"
  52. android:layout_width="wrap_content"
  53. android:layout_height="wrap_content"
  54. android:text="学号"
  55. android:layout_marginLeft="30dp"
  56. android:textSize="20sp" />
  57. <TextView
  58. android:id="@+id/xs_xm"
  59. android:layout_width="wrap_content"
  60. android:layout_height="wrap_content"
  61. android:text="姓名"
  62. android:layout_marginLeft="30dp"
  63. android:textSize="20sp" />
  64. <TextView
  65. android:id="@+id/xs_cj"
  66. android:layout_width="wrap_content"
  67. android:layout_height="wrap_content"
  68. android:text="成绩"
  69. android:layout_marginLeft="30dp"
  70. android:textSize="20sp" />
  71. </LinearLayout>
  72. <ScrollView
  73. android:layout_width="match_parent"
  74. android:layout_height="match_parent"
  75. android:layout_marginLeft="15dp"
  76. android:layout_marginRight="15dp"
  77. android:fillViewport="true">
  78. <LinearLayout
  79. android:layout_width="match_parent"
  80. android:layout_height="match_parent"
  81. android:orientation="vertical">
  82. <ListView
  83. android:id="@+id/lv_students"
  84. android:layout_width="match_parent"
  85. android:layout_height="match_parent" />
  86. </LinearLayout>
  87. </ScrollView>
  88. </LinearLayout>

代码中包含的图片文件:

在红线勾画的两个部分分别对应返回图片按钮和添加图片按钮

当然包括后面会提到的编辑删除图片按钮,这些按钮都可以在系统中设置(见步骤


步骤:

1、在如图下图的drawable点击鼠标右键,new一个image Asset 

2、然后在以下界面修改图片名字,比如这里是删除delete,是一个垃圾桶的图标

修改完名字后点击下图中的第2步,也就是垃圾桶图标的位置

3、在该界面的搜索框输入edit(或者delete、add、back),选中你喜欢的图标,然后点击OK

4、也可以选择你喜欢的颜色,当然还有其他的设置

5、然后点击Next 

6、如果你的界面中没有红色,点击Finish即可

我这里命名重复了,因此是红色的,如果这种情况仍还要Finish的话就会覆盖原来该命名下的图标

为避免覆盖,可以修改以下命名


图片文件所在位置如图:

(1)在xml文件中:

 (2)在目录中:

效果如图:

注:最终运行虚拟机后会有编辑和删除的图标,在下一个xml文件即可看到


2、activity_student_list_item.xml

该xml文件的功能在上一篇中提过,不再说明

代码:(图标按钮需自行添加到目录)

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!--
  3. 管理员下 组织结构下 学生信息
  4. -->
  5. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  6. android:layout_width="match_parent"
  7. android:layout_height="wrap_content"
  8. android:layout_margin="5dp"
  9. android:orientation="vertical">
  10. <LinearLayout
  11. android:layout_width="match_parent"
  12. android:layout_height="wrap_content"
  13. android:layout_marginTop="15dp"
  14. android:layout_marginLeft="15dp"
  15. android:layout_marginRight="15dp"
  16. android:orientation="horizontal">
  17. <TextView
  18. android:id="@+id/xs_bj"
  19. android:layout_width="wrap_content"
  20. android:layout_height="wrap_content"
  21. android:text="班级"
  22. android:textSize="20sp" />
  23. <TextView
  24. android:id="@+id/xs_xh"
  25. android:layout_width="wrap_content"
  26. android:layout_height="wrap_content"
  27. android:text="学号"
  28. android:layout_marginLeft="30dp"
  29. android:textSize="20sp" />
  30. <TextView
  31. android:id="@+id/xs_xm"
  32. android:layout_width="wrap_content"
  33. android:layout_height="wrap_content"
  34. android:text="姓名"
  35. android:layout_marginLeft="30dp"
  36. android:textSize="20sp" />
  37. <TextView
  38. android:id="@+id/xs_cj"
  39. android:layout_width="wrap_content"
  40. android:layout_height="wrap_content"
  41. android:text="成绩"
  42. android:layout_marginLeft="30dp"
  43. android:textSize="20sp" />
  44. <RelativeLayout
  45. android:layout_width="match_parent"
  46. android:layout_height="wrap_content">
  47. <LinearLayout
  48. android:layout_width="wrap_content"
  49. android:layout_height="wrap_content"
  50. android:layout_alignParentRight="true">
  51. <ImageView android:id="@+id/btn_student_list_edit"
  52. android:layout_width="30dp"
  53. android:layout_height="30dp"
  54. android:src="@drawable/edit_foreground"/>
  55. <ImageView android:id="@+id/btn_student_list_delete"
  56. android:layout_marginLeft="5dp"
  57. android:layout_width="30dp"
  58. android:layout_height="30dp"
  59. android:src="@drawable/delete_foreground"/>
  60. </LinearLayout>
  61. </RelativeLayout>
  62. </LinearLayout>
  63. </LinearLayout>

效果如图:

可以看到编辑和删除图标绑定了每一个item,因此最终在虚拟机上运行出来的结果是每一行数据信息都有编辑和删除图标,以此针对每一条信息的编辑和删除


(二)信息修改和添加界面

1、修改界面activity_student_edit.xml

代码:

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto"
  4. xmlns:tools="http://schemas.android.com/tools"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent"
  7. android:layout_margin="5dp"
  8. android:gravity="center|top"
  9. android:orientation="vertical"
  10. tools:context=".student_edit">
  11. <TextView
  12. android:layout_width="match_parent"
  13. android:layout_height="wrap_content"
  14. android:layout_marginTop="15dp"
  15. android:layout_marginLeft="15dp"
  16. android:layout_marginRight="15dp"
  17. android:gravity="center"
  18. android:text="修改学生成绩"
  19. android:textSize="30sp" />
  20. <LinearLayout
  21. android:layout_width="match_parent"
  22. android:layout_height="wrap_content"
  23. android:layout_marginTop="35dp"
  24. android:layout_marginLeft="12dp"
  25. android:layout_marginRight="12dp"
  26. android:orientation="horizontal">
  27. <TextView
  28. android:layout_width="wrap_content"
  29. android:layout_height="wrap_content"
  30. android:textStyle="bold"
  31. android:textColor="#000"
  32. android:textSize="16sp"
  33. android:text="学生班级:"/>
  34. <EditText
  35. android:id="@+id/et_student_class"
  36. android:layout_width="match_parent"
  37. android:layout_height="wrap_content"
  38. android:textStyle="bold"
  39. android:focusable="false"
  40. android:textColor="#000"
  41. android:textSize="16sp"
  42. android:hint="请输入学生班级"/>
  43. </LinearLayout>
  44. <LinearLayout
  45. android:layout_width="match_parent"
  46. android:layout_height="wrap_content"
  47. android:layout_marginTop="15dp"
  48. android:layout_marginLeft="12dp"
  49. android:layout_marginRight="12dp"
  50. android:orientation="horizontal">
  51. <TextView
  52. android:layout_width="wrap_content"
  53. android:layout_height="wrap_content"
  54. android:textStyle="bold"
  55. android:textColor="#000"
  56. android:textSize="16sp"
  57. android:text="学生学号:"/>
  58. <EditText
  59. android:id="@+id/et_student_num"
  60. android:layout_width="match_parent"
  61. android:layout_height="wrap_content"
  62. android:textStyle="bold"
  63. android:textColor="#000"
  64. android:focusable="false"
  65. android:textSize="16sp"
  66. android:hint="请输入学生学号"/>
  67. </LinearLayout>
  68. <LinearLayout
  69. android:layout_width="match_parent"
  70. android:layout_height="wrap_content"
  71. android:layout_marginTop="15dp"
  72. android:layout_marginLeft="12dp"
  73. android:layout_marginRight="12dp"
  74. android:orientation="horizontal">
  75. <TextView
  76. android:layout_width="wrap_content"
  77. android:layout_height="wrap_content"
  78. android:textStyle="bold"
  79. android:textColor="#000"
  80. android:textSize="16sp"
  81. android:text="学生姓名:"/>
  82. <EditText
  83. android:id="@+id/et_student_name"
  84. android:layout_width="match_parent"
  85. android:layout_height="wrap_content"
  86. android:textStyle="bold"
  87. android:textColor="#000"
  88. android:focusable="false"
  89. android:textSize="16sp"
  90. android:hint="请输入学生姓名"/>
  91. </LinearLayout>
  92. <LinearLayout
  93. android:layout_width="match_parent"
  94. android:layout_height="wrap_content"
  95. android:layout_marginTop="15dp"
  96. android:layout_marginLeft="12dp"
  97. android:layout_marginRight="12dp"
  98. android:orientation="horizontal">
  99. <TextView
  100. android:layout_width="wrap_content"
  101. android:layout_height="wrap_content"
  102. android:textStyle="bold"
  103. android:textColor="#000"
  104. android:textSize="16sp"
  105. android:text="学生成绩:"/>
  106. <EditText
  107. android:id="@+id/et_student_score"
  108. android:layout_width="match_parent"
  109. android:layout_height="wrap_content"
  110. android:textStyle="bold"
  111. android:textColor="#000"
  112. android:textSize="16sp"
  113. android:hint="请输入学生成绩"/>
  114. </LinearLayout>
  115. <Button
  116. android:layout_width="wrap_content"
  117. android:layout_height="wrap_content"
  118. android:onClick="btn_ok_click"
  119. android:layout_marginTop="35dp"
  120. android:text="确 定"
  121. android:textSize="20sp"
  122. android:textStyle="bold"
  123. tools:ignore="OnClick" />
  124. </LinearLayout>

注意!在该界面下我仅设置了最后一行编辑框可编辑(即“请输入学生成绩”编辑框)

而我在设置时在前三行中加入了下图红线勾画的代码(按需添加即可)

效果如图:


2、添加界面activity_student_add.xml

代码:

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto"
  4. xmlns:tools="http://schemas.android.com/tools"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent"
  7. android:layout_margin="5dp"
  8. android:gravity="center|top"
  9. android:orientation="vertical"
  10. tools:context=".StudentAdd">
  11. <TextView
  12. android:layout_width="match_parent"
  13. android:layout_height="wrap_content"
  14. android:layout_marginTop="15dp"
  15. android:layout_marginLeft="15dp"
  16. android:layout_marginRight="15dp"
  17. android:gravity="center"
  18. android:text="添加学生信息"
  19. android:textSize="30sp" />
  20. <LinearLayout
  21. android:layout_width="match_parent"
  22. android:layout_height="wrap_content"
  23. android:layout_marginTop="35dp"
  24. android:layout_marginLeft="12dp"
  25. android:layout_marginRight="12dp"
  26. android:orientation="horizontal">
  27. <TextView
  28. android:layout_width="wrap_content"
  29. android:layout_height="wrap_content"
  30. android:textStyle="bold"
  31. android:textColor="#000"
  32. android:textSize="16sp"
  33. android:text="学生班级:"/>
  34. <EditText
  35. android:id="@+id/et_student_class"
  36. android:layout_width="match_parent"
  37. android:layout_height="wrap_content"
  38. android:textStyle="bold"
  39. android:textColor="#000"
  40. android:textSize="16sp"
  41. android:hint="请输入学生班级"/>
  42. </LinearLayout>
  43. <LinearLayout
  44. android:layout_width="match_parent"
  45. android:layout_height="wrap_content"
  46. android:layout_marginTop="15dp"
  47. android:layout_marginLeft="12dp"
  48. android:layout_marginRight="12dp"
  49. android:orientation="horizontal">
  50. <TextView
  51. android:layout_width="wrap_content"
  52. android:layout_height="wrap_content"
  53. android:textStyle="bold"
  54. android:textColor="#000"
  55. android:textSize="16sp"
  56. android:text="学生学号:"/>
  57. <EditText
  58. android:id="@+id/et_student_num"
  59. android:layout_width="match_parent"
  60. android:layout_height="wrap_content"
  61. android:textStyle="bold"
  62. android:textColor="#000"
  63. android:textSize="16sp"
  64. android:hint="请输入学生学号"/>
  65. </LinearLayout>
  66. <LinearLayout
  67. android:layout_width="match_parent"
  68. android:layout_height="wrap_content"
  69. android:layout_marginTop="15dp"
  70. android:layout_marginLeft="12dp"
  71. android:layout_marginRight="12dp"
  72. android:orientation="horizontal">
  73. <TextView
  74. android:layout_width="wrap_content"
  75. android:layout_height="wrap_content"
  76. android:textStyle="bold"
  77. android:textColor="#000"
  78. android:textSize="16sp"
  79. android:text="学生姓名:"/>
  80. <EditText
  81. android:id="@+id/et_student_name"
  82. android:layout_width="match_parent"
  83. android:layout_height="wrap_content"
  84. android:textStyle="bold"
  85. android:textColor="#000"
  86. android:textSize="16sp"
  87. android:hint="请输入学生姓名"/>
  88. </LinearLayout>
  89. <LinearLayout
  90. android:layout_width="match_parent"
  91. android:layout_height="wrap_content"
  92. android:layout_marginTop="15dp"
  93. android:layout_marginLeft="12dp"
  94. android:layout_marginRight="12dp"
  95. android:orientation="horizontal">
  96. <TextView
  97. android:layout_width="wrap_content"
  98. android:layout_height="wrap_content"
  99. android:textStyle="bold"
  100. android:textColor="#000"
  101. android:textSize="16sp"
  102. android:text="学生成绩:"/>
  103. <EditText
  104. android:id="@+id/et_student_score"
  105. android:layout_width="match_parent"
  106. android:layout_height="wrap_content"
  107. android:textStyle="bold"
  108. android:textColor="#000"
  109. android:textSize="16sp"
  110. android:hint="请输入学生成绩"/>
  111. </LinearLayout>
  112. <Button
  113. android:layout_width="wrap_content"
  114. android:layout_height="wrap_content"
  115. android:onClick="btn_ok_click"
  116. android:layout_marginTop="35dp"
  117. android:text="确 定"
  118. android:textSize="20sp"
  119. android:textStyle="bold"
  120. tools:ignore="OnClick" />
  121. </LinearLayout>

该界面的所有编辑框都是可编辑的

效果如图:


二、Android Studio与云数据库交互部分

(一)连接部分

该部分大部分内容和上一篇文章的交互部分相同,细节的地方不再详细讲解

1、DbOpenHelper.java

具体可见上一篇文章,这里不再附上代码


2、XXInfo.java

XXinfo中的XX可以是任意的名称,在这里用我的文件举例

我的文件名是StudentInfo,位置同DbOpenHelper

代码:

  1. package com.example.helloword;
  2. import java.io.Serializable;
  3. public class StudentInfo implements Serializable {
  4. private String sconum;
  5. private String clanum;
  6. private String snum;
  7. private String sname;
  8. private String score;
  9. public StudentInfo() {
  10. }
  11. public StudentInfo(String sconum, String clanum, String snum, String sname,String score) {
  12. this.sconum = sconum;
  13. this.clanum=clanum;
  14. this.snum=snum;
  15. this.sname=sname;
  16. this.score=score;
  17. }
  18. //
  19. public String getSconum() {
  20. return sconum;
  21. }
  22. public void setSconum(String sconum) {
  23. this.sconum = sconum;
  24. }
  25. //
  26. public String getClanum() {
  27. return clanum;
  28. }
  29. public void setClanum(String clanum) {
  30. this.clanum = clanum;
  31. }
  32. //
  33. public String getSnum() {
  34. return snum;
  35. }
  36. public void setSnum(String snum) {
  37. this.snum = snum;
  38. }
  39. //
  40. public String getSname() {
  41. return sname;
  42. }
  43. public void setSname(String sname) {
  44. this.sname = sname;
  45. }
  46. //
  47. public String getScore() {
  48. return score;
  49. }
  50. public void setScore(String score) {
  51. this.score = score;
  52. }
  53. public String toString() {
  54. return "StudentInfo{" +
  55. "sconum='" + sconum + '\'' +
  56. ", clanum='" + clanum + '\'' +
  57. ", snum='" + snum + '\'' +
  58. ", sname='" + sname + '\'' +
  59. ", score='" + score + '\'' +
  60. '}';
  61. }
  62. }

3、XXInfoDao.java

XXinfoDao中的XX可以是任意的名称,在这里用我文件的举例

我的文件名是StudentInfoDao,位置同DbOpenHelper

代码:

  1. package com.example.helloword;
  2. import android.util.Log;
  3. import java.util.ArrayList;
  4. import java.util.List;
  5. /**
  6. * 学生信息业务层
  7. * 实现对学生信息的增删改查
  8. */
  9. public class StudentInfoDao extends DbOpenHelper{
  10. StudentInfo item = null;
  11. /**
  12. *查找全部
  13. * @return 返回用户名和密码的列表
  14. */
  15. public List<StudentInfo> getAllStudentList(){
  16. List<StudentInfo> list = new ArrayList<>();
  17. try {
  18. getConnection(); // 取得连接信息
  19. String sql = "select * from scores";
  20. pStmt = conn.prepareStatement(sql);
  21. // 填充 第一个 uname
  22. rs = pStmt.executeQuery();//执行sql语句
  23. //如果有查询结果,则执行 if 代码块中的语句,否则不执行
  24. while (rs.next()){
  25. StudentInfo item = new StudentInfo();
  26. item.setSconum(rs.getString("sconum"));
  27. item.setClanum(rs.getString("clanum"));
  28. item.setSnum(rs.getString("snum"));
  29. item.setSname(rs.getString("sname"));
  30. item.setScore(rs.getString("score"));
  31. list.add(item);
  32. }
  33. }catch (Exception e){
  34. e.printStackTrace();
  35. }finally {
  36. closeAll();
  37. }
  38. return list;
  39. }
  40. /**
  41. * 按用户名和密码查询信息 用于登录在
  42. * @return 返回的为NamePassInfo的实例
  43. */
  44. public StudentInfo getStudent(String sconum, String clanum,String snum,String sname,String score){
  45. StudentInfo item=null;
  46. try {
  47. getConnection(); // 取得连接信息
  48. String sql = "select * from scores where sconum=? clanum=? snum=? sname=? and score=?";
  49. pStmt = conn.prepareStatement(sql);
  50. // 填充 第一个 uname
  51. pStmt.setString(1, clanum);
  52. // 填充 第二个 upass
  53. pStmt.setString(2, snum);
  54. // 填充 第三个 uname
  55. pStmt.setString(3, sname);
  56. // 填充 第四个 uname
  57. pStmt.setString(4, score);
  58. rs = pStmt.executeQuery();//执行sql语句
  59. //如果有查询结果,则执行 if 代码块中的语句,否则不执行
  60. if(rs.next()){
  61. item = new StudentInfo();
  62. item.setSconum(rs.getString("sconum"));
  63. item.setClanum(rs.getString("clanum"));
  64. item.setSnum(rs.getString("snum"));
  65. item.setSname(rs.getString("sname"));
  66. item.setScore(rs.getString("score"));
  67. }
  68. }catch (Exception e){
  69. e.printStackTrace();
  70. }finally {
  71. closeAll();
  72. }
  73. return item;
  74. }
  75. /**
  76. * 添加用户信息
  77. * @param
  78. * @return 返回影响的行数
  79. */
  80. public int addStudent(StudentInfo studentInfo){
  81. int iRow = 0;
  82. try{
  83. getConnection(); //取得连接
  84. Log.i("数据sql","" + studentInfo.getSconum() + " " + studentInfo.getClanum() + " " + studentInfo.getSnum() + " " + studentInfo.getSname() + " " + studentInfo.getScore());
  85. String sql = "insert into scores (sconum, clanum, snum, sname, score) values(?,?,?,?,?)";
  86. pStmt = conn.prepareStatement(sql);
  87. pStmt.setString(1, studentInfo.getSconum());
  88. pStmt.setString(2, studentInfo.getClanum());
  89. pStmt.setString(3, studentInfo.getSnum());
  90. pStmt.setString(4, studentInfo.getSname());
  91. pStmt.setString(5, studentInfo.getScore());
  92. iRow = pStmt.executeUpdate();
  93. }catch (Exception e){
  94. e.printStackTrace();
  95. }finally {
  96. closeAll();
  97. }
  98. return iRow;
  99. }
  100. public int editStudent(StudentInfo studentEdit) {
  101. int iRow = 0;
  102. try{
  103. getConnection(); //取得连接
  104. // 此处必须要有id,要不然则为全部修改
  105. String sql = "update scores set clanum=?, snum=?, sname=?, score=? where sconum=?";
  106. pStmt = conn.prepareStatement(sql);
  107. pStmt.setString(1, studentEdit.getClanum());
  108. pStmt.setString(2, studentEdit.getSnum());
  109. pStmt.setString(3, studentEdit.getSname());
  110. pStmt.setString(4, studentEdit.getScore());
  111. pStmt.setString(5, studentEdit.getSconum());
  112. iRow = pStmt.executeUpdate();
  113. }catch (Exception e){
  114. e.printStackTrace();
  115. }finally {
  116. closeAll();
  117. }
  118. return iRow;
  119. }
  120. public int delStudent(String sconum) {
  121. int iRow = 0;
  122. try{
  123. getConnection(); //取得连接
  124. String sql = "delete from scores where sconum = ?";
  125. pStmt = conn.prepareStatement(sql);
  126. pStmt.setString(1, sconum);
  127. iRow = pStmt.executeUpdate();
  128. }catch (Exception e){
  129. e.printStackTrace();
  130. }finally {
  131. closeAll();
  132. }
  133. return iRow;
  134. }
  135. }

4、LvXXInfoAdapter.java

LvXXInfoAdapter中的XX可以是任意的名称,在这里用我文件的举例

我的文件名是LvStudentInfoAdapter,位置同DbOpenHelper

代码:

  1. package com.example.helloword;
  2. import android.content.Context;
  3. import android.util.Log;
  4. import android.view.LayoutInflater;
  5. import android.view.View;
  6. import android.view.ViewGroup;
  7. import android.widget.BaseAdapter;
  8. import android.widget.ImageView;
  9. import android.widget.TextView;
  10. import java.util.List;
  11. /**
  12. * 自定义学生用户数据适配器类
  13. */
  14. public class LvStudentinfoAdapter extends BaseAdapter {
  15. private Context context; // 上下文管理信息(谁调用这个适配器谁就是上下文,在本个中是管理员的学生信息管理功能)
  16. private List<StudentInfo> studentList; // 学生信息数据集合
  17. private OnEditBtnClickListener onEditBtnClickListener; // 修改按钮的点击事件监听实例
  18. private OnDelBtnClickListener onDelBtnClickListener; // 删除按钮的点击事件监听实例
  19. public LvStudentinfoAdapter() {
  20. }
  21. public LvStudentinfoAdapter(Context context, List<StudentInfo> studentList) {
  22. this.context = context;
  23. this.studentList = studentList;
  24. Log.i("数据库条数",":" + studentList.size());
  25. }
  26. public Context getContext() {
  27. return context;
  28. }
  29. public void setContext(Context context) {
  30. this.context = context;
  31. }
  32. public List<StudentInfo> getStudentList() {
  33. return studentList;
  34. }
  35. public void setStudentList(List<StudentInfo> studentList) {
  36. this.studentList = studentList;
  37. }
  38. public OnEditBtnClickListener getOnEditBtnClickListener() {
  39. return onEditBtnClickListener;
  40. }
  41. public void setOnEditBtnClickListener(OnEditBtnClickListener onEditBtnClickListener) {
  42. this.onEditBtnClickListener = onEditBtnClickListener;
  43. }
  44. public OnDelBtnClickListener getOnDelBtnClickListener() {
  45. return onDelBtnClickListener;
  46. }
  47. public void setOnDelBtnClickListener(OnDelBtnClickListener onDelBtnClickListener) {
  48. this.onDelBtnClickListener = onDelBtnClickListener;
  49. }
  50. @Override
  51. public int getCount() {
  52. return studentList.size();
  53. }
  54. @Override
  55. public Object getItem(int position) {
  56. return studentList.get(position);
  57. }
  58. @Override
  59. public long getItemId(int position) {
  60. return position;
  61. }
  62. @Override
  63. public View getView(final int position, View convertView, ViewGroup parent) {
  64. ViewHolder viewHolder = null;
  65. if(convertView == null){
  66. // 从context页面获取信息进行反射inflate
  67. convertView = LayoutInflater.from(context).inflate(R.layout.activity_student_list_item, null);
  68. viewHolder = new ViewHolder();
  69. viewHolder.xs_bj = convertView.findViewById(R.id.xs_bj);
  70. viewHolder.xs_xh = convertView.findViewById(R.id.xs_xh);
  71. viewHolder.xs_xm = convertView.findViewById(R.id.xs_xm);
  72. viewHolder.xs_cj = convertView.findViewById(R.id.xs_cj);
  73. viewHolder.btn_edit = convertView.findViewById(R.id.btn_student_list_edit);
  74. viewHolder.btn_delete = convertView.findViewById(R.id.btn_student_list_delete);
  75. convertView.setTag(viewHolder);
  76. }else {
  77. viewHolder = (ViewHolder) convertView.getTag();
  78. }
  79. // 这里进行数据填充
  80. StudentInfo item = studentList.get(position);
  81. viewHolder.xs_bj.setText(item.getClanum());
  82. viewHolder.xs_xh.setText(item.getSnum());
  83. viewHolder.xs_xm.setText(item.getSname());
  84. viewHolder.xs_cj.setText(item.getScore());
  85. // 修改按钮的点击事件
  86. viewHolder.btn_edit.setOnClickListener(new View.OnClickListener() {
  87. @Override
  88. public void onClick(View v) {
  89. onEditBtnClickListener.onEditBtnClick(v, position);
  90. }
  91. });
  92. // 删除按钮的点击事件
  93. viewHolder.btn_delete.setOnClickListener(new View.OnClickListener() {
  94. @Override
  95. public void onClick(View v) {
  96. onDelBtnClickListener.onDelBtnClick(v, position);
  97. }
  98. });
  99. return convertView;
  100. }
  101. // 自定义内部类
  102. private class ViewHolder{
  103. private TextView xs_bj,xs_xh,xs_xm,xs_cj;
  104. private ImageView btn_edit, btn_delete;
  105. }
  106. }

需注意,在LvStudentInfoAdapter.java文件中,有两个接口文件是不存在的,会出现红色的下划线

分别是OnDelBtnClickListener.javaOnEditBtnClickListener.java

选中这两个红色的区域,使用快捷键 Alt + Enter 出现几个选项,如下图

选择 Create interface 

但是生成的接口文件可能不对,因此我还是给出正确的接口文件

代码:

(1)OnDelBtnClickListener.java

  1. package com.example.helloword;
  2. import android.view.View;
  3. /**
  4. * 删除按钮的点击事件监听接口
  5. */
  6. public interface OnDelBtnClickListener {
  7. void onDelBtnClick(View view, int position); // 删除按钮的点击事件处理
  8. }

(2)OnEditBtnClickListener.java

  1. package com.example.helloword;
  2. import android.view.View;
  3. /**
  4. * 修改按钮的点击事件监听接口
  5. */
  6. public interface OnEditBtnClickListener {
  7. void onEditBtnClick(View view, int position); // 修改按钮的点击事件处理
  8. }

这两个接口文件位置同DbOpenHelper


(二)界面对应java文件部分

1、Student_Manage.java

代码:

  1. package com.example.helloword;
  2. import androidx.annotation.Nullable;
  3. import androidx.appcompat.app.AlertDialog;
  4. import androidx.appcompat.app.AppCompatActivity;
  5. import android.content.DialogInterface;
  6. import android.content.Intent;
  7. import android.os.Bundle;
  8. import android.os.Handler;
  9. import android.util.Log;
  10. import android.view.View;
  11. import android.widget.ImageView;
  12. import android.widget.ListView;
  13. import java.io.Serializable;
  14. import java.util.List;
  15. public class Student_Manage extends AppCompatActivity {
  16. private ImageView btn_return, btn_add;
  17. private ListView lv_students;// 学生列表组件
  18. private Handler mainHandler; // 主线程
  19. private StudentInfoDao studentInfoDao; // 学生数据库操作实例
  20. private List<StudentInfo> studentslist; // 学生信息列表
  21. private LvStudentinfoAdapter lvStudentinfoAdapter; // 用户信息适配器
  22. protected void onCreate(Bundle savedInstanceState) {
  23. super.onCreate(savedInstanceState);
  24. setContentView(R.layout.activity_student__manage);
  25. initViews(); // 实例化页面组件
  26. loadStudentDb();
  27. }
  28. private void initViews() {
  29. btn_return = findViewById(R.id.btn_return);
  30. //btn_add = findViewById(R.id.btn_add);
  31. lv_students = findViewById(R.id.lv_students);
  32. mainHandler = new Handler(getMainLooper());// 获取主线程
  33. studentInfoDao = new StudentInfoDao();
  34. btn_return.setOnClickListener(new View.OnClickListener() {
  35. public void onClick(View v) {
  36. finish();
  37. }
  38. });
  39. /*
  40. btn_add.setOnClickListener(new View.OnClickListener() {
  41. public void onClick(View v) {
  42. Intent intent = new Intent(Student_Manage.this, StudentAdd.class);
  43. startActivityForResult(intent, 1);
  44. }
  45. });
  46. // lv_students.setOnClickListener(this);
  47. */
  48. }
  49. private void loadStudentDb() {
  50. new Thread(new Runnable() {
  51. @Override
  52. public void run() {
  53. studentslist = studentInfoDao.getAllStudentList(); // 获取所有的用户数据
  54. mainHandler.post(new Runnable() {
  55. @Override
  56. public void run() {
  57. showLvStuData();
  58. }
  59. });
  60. }
  61. }).start();
  62. }
  63. // 显示学生数据
  64. private void showLvStuData(){
  65. // 当前界面为空时(即首次加载)
  66. if(lvStudentinfoAdapter == null){
  67. lvStudentinfoAdapter = new LvStudentinfoAdapter(this, studentslist);
  68. lv_students.setAdapter(lvStudentinfoAdapter);
  69. }else{ // 当数据更新时
  70. lvStudentinfoAdapter.setStudentList(studentslist);
  71. lvStudentinfoAdapter.notifyDataSetChanged();
  72. }
  73. // 修改按钮的操作
  74. lvStudentinfoAdapter.setOnEditBtnClickListener(new OnEditBtnClickListener() {
  75. @Override
  76. public void onEditBtnClick(View view, int position) {
  77. Log.i("修改","");
  78. StudentInfo item = studentslist.get(position);
  79. Bundle bundle = new Bundle();
  80. bundle.putSerializable("studentEdit", item);
  81. Intent intent = new Intent(Student_Manage.this, student_edit.class);
  82. intent.putExtras(bundle);
  83. startActivityForResult(intent, 1);
  84. }
  85. });
  86. // 删除按钮的操作
  87. lvStudentinfoAdapter.setOnDelBtnClickListener(new OnDelBtnClickListener() {
  88. @Override
  89. public void onDelBtnClick(View v, int position) {
  90. // 删除方法
  91. final StudentInfo item = studentslist.get(position);
  92. new AlertDialog.Builder(Student_Manage.this)
  93. .setTitle("删除确认")
  94. .setMessage("您确定要删除:name:[" + item.getSname() + "]的用户信息吗")
  95. .setPositiveButton("确定", new DialogInterface.OnClickListener() {
  96. @Override
  97. public void onClick(DialogInterface dialog, int which) {
  98. doDelStu(item.getSnum());
  99. }
  100. })
  101. .setNegativeButton("取消", null)
  102. .create().show();
  103. }
  104. });
  105. }
  106. /**
  107. * 执行删除用户的方法
  108. */
  109. private void doDelStu(final String snum){
  110. new Thread(new Runnable() {
  111. @Override
  112. public void run() {
  113. final int iRow = studentInfoDao.delStudent(snum);
  114. mainHandler.post(new Runnable() {
  115. @Override
  116. public void run() {
  117. loadStudentDb();
  118. }
  119. });
  120. }
  121. }).start();
  122. }
  123. protected void onActivityResult(int requestCode, int resultCode, @Nullable Intent data) {
  124. super.onActivityResult(requestCode, resultCode, data);
  125. if(requestCode == 1 && resultCode == 1){ //操作成功
  126. loadStudentDb(); // 重新加载数据
  127. }
  128. }
  129. }

2、StudentAdd.java

代码:

  1. package com.example.helloword;
  2. import androidx.appcompat.app.AppCompatActivity;
  3. import android.content.Intent;
  4. import android.os.Bundle;
  5. import android.os.Handler;
  6. import android.text.TextUtils;
  7. import android.view.View;
  8. import android.widget.EditText;
  9. import java.util.UUID;
  10. public class StudentAdd extends AppCompatActivity {
  11. private static final java.util.UUID UUID = null;
  12. private EditText et_student_class, et_student_num, et_student_name,et_student_score;
  13. private StudentInfoDao studentInfoDao; // 用户数据操作类实例
  14. private Handler mainHandler;
  15. protected void onCreate(Bundle savedInstanceState) {
  16. super.onCreate(savedInstanceState);
  17. setContentView(R.layout.activity_student_add);
  18. et_student_class = findViewById(R.id.et_student_class);
  19. et_student_num = findViewById(R.id.et_student_num);
  20. et_student_name = findViewById(R.id.et_student_name);
  21. et_student_score = findViewById(R.id.et_student_score);
  22. studentInfoDao = new StudentInfoDao();
  23. mainHandler = new Handler(getMainLooper());
  24. }
  25. // 确定按钮的点击事件
  26. public void btn_ok_click(View view) {
  27. final String uclass = et_student_class.getText().toString().trim();
  28. final String unum = et_student_num.getText().toString().trim();
  29. final String uname = et_student_name.getText().toString().trim();
  30. final String uscore = et_student_score.getText().toString().trim();
  31. // 如果为空
  32. if(TextUtils.isEmpty(uclass)){
  33. CommonUtils.showShortMsg(this, "请输入学生班级");
  34. et_student_class.requestFocus();
  35. }
  36. else if(TextUtils.isEmpty(unum)){
  37. CommonUtils.showShortMsg(this, "请输入学生学号");
  38. et_student_num.requestFocus();
  39. }
  40. else if(TextUtils.isEmpty(uname)) {
  41. CommonUtils.showShortMsg(this, "请输入学生姓名");
  42. et_student_name.requestFocus();
  43. }
  44. else if(TextUtils.isEmpty(uscore)){
  45. CommonUtils.showShortMsg(this, "请输入学生成绩");
  46. et_student_score.requestFocus();
  47. }
  48. else{
  49. final StudentInfo item = new StudentInfo();
  50. String sconum = java.util.UUID.randomUUID().toString();
  51. item.setSconum(sconum);
  52. item.setClanum(uclass);
  53. item.setSnum(unum);
  54. item.setSname(uname);
  55. item.setScore(uscore);
  56. //item.setDate(CommonUtils.getDateStrFromNow)
  57. new Thread(new Runnable() {
  58. @Override
  59. public void run() {
  60. final int iRow = studentInfoDao.addStudent(item);
  61. // 获取之后调用主线程(主线程就是界面的这个线程)
  62. mainHandler.post(new Runnable() {
  63. @Override
  64. public void run() {
  65. setResult(1); // 使用参数表示当前界面操作成功,并返回学生管理界面
  66. finish();
  67. }
  68. });
  69. }
  70. }).start();
  71. }
  72. }
  73. }

3、student_edit.java

代码:

  1. package com.example.helloword;
  2. import androidx.appcompat.app.AppCompatActivity;
  3. import android.os.Bundle;
  4. import android.os.Handler;
  5. import android.text.TextUtils;
  6. import android.view.View;
  7. import android.widget.EditText;
  8. public class student_edit extends AppCompatActivity {
  9. private EditText et_student_class, et_student_num, et_student_name,et_student_score;
  10. private StudentInfoDao studentInfoDao; // 用户数据操作类实例
  11. private StudentInfo studentEdit; // 当前要修改的用户信息
  12. private Handler mainHandler;
  13. protected void onCreate(Bundle savedInstanceState) {
  14. super.onCreate(savedInstanceState);
  15. setContentView(R.layout.activity_student_edit);
  16. et_student_class = findViewById(R.id.et_student_class);
  17. et_student_num = findViewById(R.id.et_student_num);
  18. et_student_name = findViewById(R.id.et_student_name);
  19. et_student_score = findViewById(R.id.et_student_score);
  20. Bundle bundle = getIntent().getExtras();
  21. if(bundle != null){
  22. studentEdit = (StudentInfo) bundle.getSerializable("studentEdit");
  23. et_student_class.setText(studentEdit.getClanum());
  24. et_student_num.setText(studentEdit.getSnum());
  25. et_student_name.setText(studentEdit.getSname());
  26. et_student_score.setText(studentEdit.getScore());
  27. }
  28. studentInfoDao = new StudentInfoDao();
  29. mainHandler = new Handler(getMainLooper());
  30. }
  31. // 确定按钮的点击事件
  32. public void btn_ok_click(View view) {
  33. final String uclass = et_student_class.getText().toString().trim();
  34. final String unum = et_student_num.getText().toString().trim();
  35. final String uname = et_student_name.getText().toString().trim();
  36. final String uscore = et_student_score.getText().toString().trim();
  37. // 如果为空
  38. if(TextUtils.isEmpty(uclass)){
  39. CommonUtils.showShortMsg(this, "请输入学生班级");
  40. et_student_class.requestFocus();
  41. }
  42. else if(TextUtils.isEmpty(unum)){
  43. CommonUtils.showShortMsg(this, "请输入学生学号");
  44. et_student_num.requestFocus();
  45. }
  46. else if(TextUtils.isEmpty(uname)){
  47. CommonUtils.showShortMsg(this, "请输入学生姓名");
  48. et_student_name.requestFocus();
  49. }
  50. else if(TextUtils.isEmpty(uscore)){
  51. CommonUtils.showShortMsg(this, "请输入学生成绩");
  52. et_student_score.requestFocus();
  53. }
  54. else{
  55. studentEdit.setClanum(uclass);
  56. studentEdit.setSnum(unum);
  57. studentEdit.setSname(uname);
  58. studentEdit.setScore(uscore);
  59. // item.setDate(CommonUtils.getDateStrFromNow)
  60. new Thread(new Runnable() {
  61. @Override
  62. public void run() {
  63. final int iRow = studentInfoDao.editStudent(studentEdit);
  64. // 获取之后调用主线程(主线程就是界面的这个线程)
  65. mainHandler.post(new Runnable() {
  66. @Override
  67. public void run() {
  68. setResult(1); // 使用参数表示当前界面操作成功,并返回学生管理界面
  69. finish();
  70. }
  71. });
  72. }
  73. }).start();
  74. }
  75. }
  76. }

三、一些问题

1、实际上,从某种程度来说,本文章实现的功能有些可能无法实现,但是吧,同样的代码我室友的电脑能运行,这我也解释不了了QAQ

2、另外就是开篇我说过我的云数据库过期了,因此无法验证是否存在问题,算是比较大的一个问题了(但是写这个文章好累啊www放过孩子吧,卖萌.jpg)

3、搜索功能我考虑考虑要不要写吧嘻嘻

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/很楠不爱3/article/detail/279785
推荐阅读
相关标签
  

闽ICP备14008679号