上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 17 下一页
摘要: 为我们的程序定义基本数据 package com.example.myexamproject.bean;public class Student { private String stuNumber; private String stuName; private String stuMajor; 阅读全文
posted @ 2024-05-01 14:06 大虚胖子 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 写个删除界面的后端 package com.example.myexamproject;import androidx.appcompat.app.AppCompatActivity;import android.os.Bundle;import android.view.View;import a 阅读全文
posted @ 2024-05-01 14:06 大虚胖子 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 写后端增加数据的代码 package com.example.myexamproject;import androidx.appcompat.app.AppCompatActivity;import android.os.Bundle;import android.text.TextUtils;im 阅读全文
posted @ 2024-05-01 14:06 大虚胖子 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 在另一个Activity中添加一个按钮或者其他触发事件,当用户点击该按钮时,跳转到登录界面。 // 导入必要的类 import android.content.Intent; import android.os.Bundle; import android.view.View; import and 阅读全文
posted @ 2024-04-25 23:10 大虚胖子 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 主要使用了ScrollView包裹着一个垂直方向的LinearLayout,其中包含了一些TextView、EditText和一个登录按钮。 import android.os.Bundle; import android.text.TextUtils; import android.view.Vi 阅读全文
posted @ 2024-04-25 23:10 大虚胖子 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 部分 Activity 类的实现,展示了如何初始化控件、处理点击事件以及简单的登录逻辑 // 请确保在正确的包名下创建该 Activity 类,并导入相应的类和资源 import android.os.Bundle; import android.text.TextUtils; import and 阅读全文
posted @ 2024-04-25 23:10 大虚胖子 阅读(3) 评论(0) 推荐(0) 编辑
摘要: Android采用Sqlite作为数据库存储。Sqlite代码写起来繁琐且容易出错,所以开源社区里逐渐出现了各种ORM(Object Relational Mapping)库。这些开源ORM库都是为了方便Sqlite的使用,包括数据库的创建,升级,增删改查等。常见的ORM有ORMLite,Green 阅读全文
posted @ 2024-04-17 23:54 大虚胖子 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 把数据录入了数据库 虽然效率有点低 但是我坚信这是迈出了一大步 编程一小时 阅读全文
posted @ 2024-04-17 23:54 大虚胖子 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 今天的任务是编写一个登录功能。您遇到的困难是Gradle配置问题。您可以尝试解决Gradle配置问题并继续编写登录功能。 <?xml version="1.0" encoding="utf-8"?> <ScrollView xmlns:android="http://schemas.android. 阅读全文
posted @ 2024-04-17 23:54 大虚胖子 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 今天上午5节课,下午进行web实验。通过本次实验,我学会了有关session的常用方法,制作了登录,对于了解cookie的知识完成设置账号与密码的有效时间。然后我选择的是进行三首诗的分享,处于游客时只能对诗的名字进行浏览,进行登录后就能对诗句进行观看,然后账号和密码一样就能进行登录,并且跳转到主页, 阅读全文
posted @ 2024-04-11 11:56 大虚胖子 阅读(1) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 17 下一页