document.write("");
上一页 1 2 3 4 5 6 ··· 14 下一页
摘要: 背景:RecyclerView 左右滑动时,需要获取当前显示在页面上的选项卡 步骤: 1. RecyclerView 添加addOnScrollListener,回调中可以直接获取对应Item Index xxxRecyclerView.addOnScrollListener(new Recycle 阅读全文
posted @ 2024-06-07 09:23 人间春风意 阅读(13) 评论(0) 推荐(0) 编辑
摘要: 背景:水平滚动的List,一项Item占满页面宽度,相当于数量不定的选项卡,每个选项卡占满一页,左右滑动时,如何限制一次只能滑动一个Item 步骤: 1. 水平滚动布局 linearLayoutManager = new LinearLayoutManager(this); linearLayout 阅读全文
posted @ 2024-06-07 09:16 人间春风意 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 问题背景:使用适配器显示一个列表,列表中Item中有EditText,滚动时会有EditText组件内容消失 步骤: 1. 在Adapter中,添加interface public interface OnEidtTextChangeListener { void xxxTextChanged(Ch 阅读全文
posted @ 2024-06-07 09:09 人间春风意 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 在Activity中,使用this.getCurrentFocus(),获取当前焦点所在的View, 再判断是否是EditText(可调整成其他组件),看个人需要再做特定的逻辑处理 String content = "xxxxx"; EditText focusedEditText = null; 阅读全文
posted @ 2024-06-07 08:52 人间春风意 阅读(7) 评论(0) 推荐(0) 编辑
摘要: 背景:maven项目要将整个项目的依赖移植到某无法联网服务器进行测试,需要项目离线运行所需的全部依赖 步骤: 1. 首先需要有项目源码,解压后,使用IDEA Open Project 2. 在Settings中,配置settings.xml文件的完整路径,以及依赖文件夹的完整路径 setting.x 阅读全文
posted @ 2024-06-04 15:38 人间春风意 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 报错: Failed to parse multipart servlet request; nested exception is java.io.IOException: org.apache.tomcat.util.http.fileupload.FileUploadException: th 阅读全文
posted @ 2024-05-14 16:35 人间春风意 阅读(420) 评论(0) 推荐(0) 编辑
摘要: 错误写法(这种写法固定死了类型,会不匹配): const data = canvas.toDataURL('image/jpeg', quality); 调整成: let fileType = xxxObj.type const data = canvas.toDataURL(fileType, q 阅读全文
posted @ 2024-05-14 08:59 人间春风意 阅读(47) 评论(0) 推荐(0) 编辑
摘要: insert数据时,给bit(1)字段赋值 '1' 报错 将字符串'1',修改为数字1即可 阅读全文
posted @ 2024-05-10 10:00 人间春风意 阅读(14) 评论(0) 推荐(0) 编辑
摘要: <dependencyManagement> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-dependencies</artifactId> <vers 阅读全文
posted @ 2024-05-09 14:07 人间春风意 阅读(15) 评论(0) 推荐(0) 编辑
摘要: 背景:清除Temp文件夹时,路径复制错误,少复制了Temp,导致删除了文件夹 C:\Users\username\AppData\Local\ 异常现象: 估计删除Local文件夹后,出现的问题应该会比较多,但我目前实际上只遇到了一个问题,其它的问题等遇到再说 单按win键无响应,无法呼出开始菜单栏 阅读全文
posted @ 2024-05-08 15:28 人间春风意 阅读(189) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 14 下一页