上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 25 下一页
摘要: sqlite数据库查找功能 代码如下: Dao.java(其中Constants.TABLE_NAME为数据库的表名) 1 public class Dao { 2 3 private final MyDatabaseHelper mHelper; 4 5 public Dao(Context co 阅读全文
posted @ 2021-03-11 21:55 一口獠牙 阅读(37) 评论(0) 推荐(0) 编辑
摘要: 复选框: 布局文件activity_main.xml 1 <TextView 2 android:id="@+id/instruction" 3 android:layout_width="wrap_content" 4 android:layout_height="wrap_content" 5 阅读全文
posted @ 2021-03-10 19:58 一口獠牙 阅读(26) 评论(0) 推荐(0) 编辑
摘要: 第九周 所花时间(包括上课) 四小时 代码量(行) 700行 博客量(篇) 七 了解到的知识点 1.熟悉使用了javabean 阅读全文
posted @ 2021-03-10 09:03 一口獠牙 阅读(13) 评论(0) 推荐(0) 编辑
摘要: 将数据显示在listview上并且点击listview时实现数据跳转到其他界面 代码如下: activity_main.xml 1 <ListView 2 android:id="@+id/account" 3 android:layout_width="match_parent" 4 androi 阅读全文
posted @ 2021-03-09 18:52 一口獠牙 阅读(34) 评论(0) 推荐(0) 编辑
摘要: 侧滑界面——向右滑动或者是点击左上角的一个文本进行侧滑 主界面activity_main.xml 1 <?xml version="1.0" encoding="utf-8"?> 2 <androidx.drawerlayout.widget.DrawerLayout xmlns:android=" 阅读全文
posted @ 2021-03-08 19:53 一口獠牙 阅读(25) 评论(0) 推荐(0) 编辑
摘要: 今天遇到了问题Private field 'mName' is never assigned 后面发现是标点符号的使用错误,即 将mName.findViewById(R.id.name);改成mName=findViewById(R.id.name);即可 阅读全文
posted @ 2021-03-07 17:12 一口獠牙 阅读(15) 评论(0) 推荐(0) 编辑
摘要: 1 <intent-filter> 2 <action android:name="android.intent.action.MAIN" /> 3 4 <category android:name="android.intent.category.LAUNCHER" /> 5 </intent-f 阅读全文
posted @ 2021-03-06 21:15 一口獠牙 阅读(19) 评论(0) 推荐(0) 编辑
摘要: 增加用户注册功能,用户注册信息包括用户ID(学号)、用户名(姓名),手机号码,用户单位(班级),用户班级四项基本信息 效果如下: 布局文件activity_zhuce.xml代码如下: 1 <?xml version="1.0" encoding="utf-8"?> 2 <RelativeLayou 阅读全文
posted @ 2021-03-05 21:09 一口獠牙 阅读(69) 评论(0) 推荐(0) 编辑
摘要: 今天将数据库中记录的数据全部导入到主页面中,进行一个收入及支出的记录的显示 代码如下: 适配器AccountAdapter.java 1 import android.content.Context; 2 import android.view.LayoutInflater; 3 import an 阅读全文
posted @ 2021-03-04 17:06 一口獠牙 阅读(54) 评论(0) 推荐(0) 编辑
摘要: EditText输入框中只能输入自己定义的字符串 EditText的属性里面已经封装好了相关的设置 android:digits="1234567890." 只能输入自己定义的这些字符串 如果输入其它将不予以显示 activity_add.xml 1 <EditText 2 android:id=" 阅读全文
posted @ 2021-03-03 21:27 一口獠牙 阅读(46) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 25 下一页