上一页 1 2 3 4 5 6 7 8 9 ··· 34 下一页
摘要: 实验四 Calculator.java package org.example; public class Calculator { // 加法 public int add(int a, int b) { return a + b; } // 减法 public int subtract(int 阅读全文
posted @ 2025-04-28 15:14 KuanDong24 阅读(14) 评论(0) 推荐(0)
摘要: StudentDbHelper.java package com.leaf.collegeidleapp.util; import android.content.ContentValues; import android.content.Context; import android.databa 阅读全文
posted @ 2025-04-25 07:58 KuanDong24 阅读(8) 评论(0) 推荐(0)
摘要: ReviewDbHelper.java package com.leaf.collegeidleapp.util; import android.content.ContentValues; import android.content.Context; import android.databas 阅读全文
posted @ 2025-04-25 07:57 KuanDong24 阅读(8) 评论(0) 推荐(0)
摘要: package com.leaf.collegeidleapp.util; import android.content.ContentValues; import android.content.Context; import android.database.Cursor; import and 阅读全文
posted @ 2025-04-25 07:56 KuanDong24 阅读(8) 评论(0) 推荐(0)
摘要: Commodity.java package com.leaf.collegeidleapp.bean; /** * 商品实体类 * @author : autumn_leaf */ public class Commodity { //编号 private Integer id; //标题 pri 阅读全文
posted @ 2025-04-22 14:05 KuanDong24 阅读(13) 评论(0) 推荐(0)
摘要: 数据库bean package com.leaf.collegeidleapp.bean; /** * 我的收藏实体类 * @author autumn_leaf */ public class Collection { //学生学号 private String StuId; //商品图片 pri 阅读全文
posted @ 2025-04-22 14:03 KuanDong24 阅读(8) 评论(0) 推荐(0)
摘要: ReviewAdapter.java package com.leaf.collegeidleapp.adapter; import android.content.Context; import android.view.LayoutInflater; import android.view.Vi 阅读全文
posted @ 2025-04-22 14:03 KuanDong24 阅读(10) 评论(0) 推荐(0)
摘要: MyCommodityAdapter.java package com.leaf.collegeidleapp.adapter; import android.content.Context; import android.graphics.Bitmap; import android.graphi 阅读全文
posted @ 2025-04-22 14:02 KuanDong24 阅读(10) 评论(0) 推荐(0)
摘要: MyCollectionAdapter.java package com.leaf.collegeidleapp.adapter; import android.content.Context; import android.graphics.Bitmap; import android.graph 阅读全文
posted @ 2025-04-22 14:01 KuanDong24 阅读(7) 评论(0) 推荐(0)
摘要: 进行移动应用开发技术大作业: package com.leaf.collegeidleapp.adapter; import android.content.Context; import android.graphics.Bitmap; import android.graphics.Bitmap 阅读全文
posted @ 2025-04-22 14:01 KuanDong24 阅读(14) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 8 9 ··· 34 下一页