摘要:
软件主要运行界面的后端代码 package com.example.myexamproject;import androidx.appcompat.app.AppCompatActivity;import android.annotation.SuppressLint;import android. 阅读全文
摘要:
找寻图片,完成软件美化 阅读全文
摘要:
写前端界面 <?xml version="1.0" encoding="utf-8"?><LinearLayout android:layout_width="match_parent" android:layout_height="match_parent" android:orientation 阅读全文
摘要:
登录的后端代码 package com.example.myexamproject;import androidx.appcompat.app.AppCompatActivity;import android.content.Context;import android.content.Intent 阅读全文
摘要:
写后端增加数据的代码 package com.example.myexamproject;import androidx.appcompat.app.AppCompatActivity;import android.os.Bundle;import android.text.TextUtils;im 阅读全文
摘要:
写个删除界面的后端 package com.example.myexamproject;import androidx.appcompat.app.AppCompatActivity;import android.os.Bundle;import android.view.View;import a 阅读全文
摘要:
为我们的程序定义基本数据 package com.example.myexamproject.bean;public class Student { private String stuNumber; private String stuName; private String stuMajor; 阅读全文
摘要:
部分 Activity 类的实现,展示了如何初始化控件、处理点击事件以及简单的登录逻辑 // 请确保在正确的包名下创建该 Activity 类,并导入相应的类和资源 import android.os.Bundle; import android.text.TextUtils; import and 阅读全文
摘要:
在另一个Activity中添加一个按钮或者其他触发事件,当用户点击该按钮时,跳转到登录界面。 // 导入必要的类 import android.content.Intent; import android.os.Bundle; import android.view.View; import and 阅读全文
摘要:
主要使用了ScrollView包裹着一个垂直方向的LinearLayout,其中包含了一些TextView、EditText和一个登录按钮。 import android.os.Bundle; import android.text.TextUtils; import android.view.Vi 阅读全文