上一页 1 ··· 23 24 25 26 27 28 29 30 31 ··· 33 下一页
摘要: 有一杯密封饮料,它的名字叫做“SDK”。 饮料上插着吸管,吸管的名字叫“API”。 把你叫做“XX系统”。 阅读全文
posted @ 2022-02-06 11:47 又一岁荣枯 阅读(45) 评论(0) 推荐(0) 编辑
摘要: jsp代码 <input type="file" id="file" onchange="getfilename()"> <input type="text" name="bookImg" id="value" required hidden> js代码 <script> function getf 阅读全文
posted @ 2022-02-06 10:29 又一岁荣枯 阅读(411) 评论(0) 推荐(0) 编辑
摘要: 找到tomcat中的context.xml配置文件 打开之后查找<Context>找到之后将其修改成<Context xmlBlockExternal="false">即可 阅读全文
posted @ 2022-02-05 10:41 又一岁荣枯 阅读(57) 评论(0) 推荐(0) 编辑
摘要: 项目地址 https://gitee.com/heziyan_code/note-book 项目结构 Room数据库:AppDatabase/User/UserDao Main界面:将List中的内容显示出来 Edit界面:编辑内容 Room数据库 关于Room的基本用法请看官网介绍:https:/ 阅读全文
posted @ 2022-02-04 20:28 又一岁荣枯 阅读(547) 评论(0) 推荐(0) 编辑
摘要: onCreate(null);//调用该方法即可 阅读全文
posted @ 2022-02-04 19:36 又一岁荣枯 阅读(33) 评论(0) 推荐(0) 编辑
摘要: 普通对话框的创建 初始化方法 public Dialog onCreateDialog(User user) { // Use the Builder class for convenient dialog construction AlertDialog.Builder builder = new 阅读全文
posted @ 2022-02-04 19:31 又一岁荣枯 阅读(77) 评论(0) 推荐(0) 编辑
摘要: 什么是Adapter? Adapter 对象充当AdapterView视图和底层数据之间的桥梁。适配器提供对数据项的访问。Adapter 还负责为android.view.View数据集中的每个项目制作一个。 简单来说,Adapter提供了一个将其他View嵌套进RecycleView的方法,使每个 阅读全文
posted @ 2022-02-04 19:23 又一岁荣枯 阅读(1257) 评论(0) 推荐(0) 编辑
摘要: git add.//添加到暂存区 git commit -m "提交的信息" git push//提交到远程 阅读全文
posted @ 2022-02-04 11:29 又一岁荣枯 阅读(20) 评论(0) 推荐(0) 编辑
摘要: 使用Inten的putExtra传递 第一个Activity中 //创建意图对象 Intent intent = new Intent(this,TwoActivity.class); //设置传递键值对 intent.putExtra("data",str); //激活意图 startActivi 阅读全文
posted @ 2022-02-03 19:43 又一岁荣枯 阅读(678) 评论(0) 推荐(0) 编辑
摘要: Android Studio默认继承AppCompatActivity(有Bar的),使用onCreate(null)无法刷新。 1、当前Activity要继承Activity,而不是默认的AppCompatActivity 2、使用onCreate(null);刷新页面 阅读全文
posted @ 2022-02-03 11:43 又一岁荣枯 阅读(1194) 评论(0) 推荐(0) 编辑
上一页 1 ··· 23 24 25 26 27 28 29 30 31 ··· 33 下一页