摘要:
页面设计 登陆页面 <?xml version="1.0" encoding="utf-8"?><RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas 阅读全文
posted @ 2024-06-16 19:48
平安喜乐×
阅读(10)
评论(0)
推荐(0)
摘要:
RegisterActivity package com.example.app_02;import android.annotation.SuppressLint;import android.app.Activity;import android.content.Context;import a 阅读全文
posted @ 2024-06-16 19:30
平安喜乐×
阅读(11)
评论(0)
推荐(0)
摘要:
GoalActivity package com.example.app_02;import android.annotation.SuppressLint;import android.app.DatePickerDialog;import android.content.Context;impo 阅读全文
posted @ 2024-06-16 19:29
平安喜乐×
阅读(15)
评论(0)
推荐(0)
摘要:
后端接近完成后开始做前端 MainActivity package com.example.app_02;import androidx.appcompat.app.AppCompatActivity;import android.os.Bundle;public class MainActivit 阅读全文
posted @ 2024-06-16 19:28
平安喜乐×
阅读(23)
评论(0)
推荐(0)
摘要:
具体数据库操作 RecordDao.java package com.example.app_02.utils;import com.example.app_02.R;import com.example.app_02.database.MySQLConnection;import com.exam 阅读全文
posted @ 2024-06-16 19:25
平安喜乐×
阅读(18)
评论(0)
推荐(0)
摘要:
在上一次的课堂上完成了数据库的连接,现在开始做实体类以及sql语句的编写 Record类: package com.example.app_02.entity;public class Record { private String startTime; private String endTime 阅读全文
posted @ 2024-06-16 19:23
平安喜乐×
阅读(7)
评论(0)
推荐(0)
摘要:
在本次课后,老师布置了第一次个人作业,要求开发一款学习打卡记录软件,部署在安卓端,可以在手机上操作 项目介绍: 项目背景:石家庄铁道大学软件工程系从本学期开始要求22级学生每日打卡总结,特委托石家庄铁道大学前进22软件有限公司进行开发。 第一阶段目标: 1、用户注册:用户注册信息包括用户ID(学号) 阅读全文
posted @ 2024-06-16 19:21
平安喜乐×
阅读(37)
评论(0)
推荐(0)
摘要:
配置 plugins { id("com.android.application")}android { namespace = "com.example.policyquery" compileSdk = 34 defaultConfig { applicationId = "com.exampl 阅读全文
posted @ 2024-06-16 12:18
平安喜乐×
阅读(33)
评论(0)
推荐(0)
摘要:
编写安卓的界面 <?xml version="1.0" encoding="utf-8"?><androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/and 阅读全文
posted @ 2024-06-16 12:16
平安喜乐×
阅读(16)
评论(0)
推荐(0)
摘要:
编写安卓内部运行的代码 MainActivity package com.example.policyquery;import android.content.Intent;import android.os.Bundle;import android.util.Log;import android 阅读全文
posted @ 2024-06-16 12:16
平安喜乐×
阅读(37)
评论(0)
推荐(0)
摘要:
上一期已经将后端的代码完成,目前开始做安卓端内容 编写Api接口,连接spring boot后端 package com.example.policyquery.api;import com.example.policyquery.DataModel.Policy;import java.util. 阅读全文
posted @ 2024-06-16 12:14
平安喜乐×
阅读(21)
评论(0)
推荐(0)
摘要:
mapper package com.leap.jixianceshiboot.mapper;import com.leap.jixianceshiboot.entity.Policy;import com.leap.jixianceshiboot.entity.PolicyTypeCount;im 阅读全文
posted @ 2024-06-16 12:11
平安喜乐×
阅读(24)
评论(0)
推荐(0)
摘要:
controller层 package com.leap.jixianceshiboot.controller;import com.leap.jixianceshiboot.entity.Policy;import com.leap.jixianceshiboot.entity.PolicyTyp 阅读全文
posted @ 2024-06-16 12:08
平安喜乐×
阅读(27)
评论(0)
推荐(0)
摘要:
老师现在又要求将此系统功能实现在安卓端,正好最近学习了springboot相关知识,便用springboot做后端,安卓的页面做前端编写了此系统 创建springboot项目做好数据库配置 spring: datasource: driver-class-name: com.mysql.cj.jdb 阅读全文
posted @ 2024-06-16 12:07
平安喜乐×
阅读(18)
评论(0)
推荐(0)
摘要:
package Dao; import Bean.Menu; import Bean.bean; import Bean.policy; import DBUtil.dbutil; import org.apache.ibatis.io.Resources; import org.apache.ib 阅读全文
posted @ 2024-06-16 12:02
平安喜乐×
阅读(18)
评论(0)
推荐(0)
摘要:
今日课上的政策查询系统极限测试寥寥草草将功能实现了,把内部代码进行完善一下 完整代码: index.jsp <%@ page contentType="text/html;charset=UTF-8" language="java" %> <!DOCTYPE html> <html lang="en 阅读全文
posted @ 2024-06-16 12:01
平安喜乐×
阅读(12)
评论(0)
推荐(0)
摘要:
plugins { id("com.android.application")}android { namespace = "com.example.subway" compileSdk = 34 defaultConfig { applicationId = "com.example.subway 阅读全文
posted @ 2024-06-16 11:55
平安喜乐×
阅读(10)
评论(0)
推荐(0)
摘要:
前端相关代码<?xml version="1.0" encoding="utf-8"?><androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/andro 阅读全文
posted @ 2024-06-16 11:53
平安喜乐×
阅读(8)
评论(0)
推荐(0)
摘要:
为前端配置主题 <?xml version="1.0" encoding="utf-8"?><resources> <color name="purple_200">#1E90FF</color> <color name="purple_500">#FF6200EE</color> <color n 阅读全文
posted @ 2024-06-16 11:52
平安喜乐×
阅读(14)
评论(0)
推荐(0)
摘要:
近期地铁项目作业再次升级,部署到安卓端,我们依旧准备先从后端做起,在连接前端 package com.example.subway.database;import java.sql.*;public class DB { public Connection conn = null; public S 阅读全文
posted @ 2024-06-16 11:50
平安喜乐×
阅读(19)
评论(0)
推荐(0)

浙公网安备 33010602011771号