版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
课程设计实验报告第页共页【移动开发应用框架】课程设计报告《课程表的设计与实现》所在院(系):信息工程学院学号:学生姓名:年级专业:软件工程指导教师:提交日期:年月课程设计实验报告班级姓名学号任课教师实验日期成绩目的(本次课程设计的概要以及所涉及的知识点。)1.课程表课程的添加与实现记录笔记并可以查看设计知识点:数据库的数据的新增,查询,删除等,辅助类,上下文菜单的使用;二、使用环境(本次实践所使用的平台和相关软件。)SDK:(softwaredevelopmentkit)软件开发工具包。被软件开发工程师用于为特定的软件包、软件框架、硬件平台、操作系统等建立应用软件的开发工具的集合。因此,AndroidSDK指的是Android专属的软件开发工具包。使用Eclipse进行android应用开发需要给Eclipse装ADT插件,这样Eclipse就可以和androidADT建立连接,可以在Eclipse中启动android模拟器进行程序调试等。三、内容与设计思想(1.设计思路2.主要功能说明3.主要的模块结构4.主要代码分析。)1.课程与笔记是私有的,所以设置用户名与密码登陆,在课程表中应有一个显示界面,用于显示已添加的课程,点击新增按钮进入新增界面,用于增加新的课程,需添加上课的星期和课的节次,并检查当前是否有课,并提示。保存后进入课表显示界面,查看课表。笔记中有一笔记列表,显示创建笔记的时间和标题。点开笔记可以查看详细内容。也可以进行笔记的新增。若长按笔记。则可以进行删除操作。2.登录进入菜单,若无用户,可以注册。课程表,查看已经有课程,新增课程并保存。笔记,查看已有笔记,查看详细笔记,新增笔记,删除笔记。3.整个程序包含两个大的模块:课程表模块和笔记模块;课程表中包含显示和新增两个模块;笔记中有显示列表模块,新增模块,和查看模块4.(1)用户登录时,根据用户名与密码进入数据库中查询,若有返回值为1,表示有该用户,进行界面的跳转,进去菜单界面。若返回值为0,则表示用户名或密码错误,并提示。but_login.setOnClickListener(newOnClickListener(){ publicvoidonClick(Viewarg0){ Stringputname=edit_putname.getText().toString(); Stringputpassword=edit_putpassword.getText().toString(); Cursorcs=dbhelper.login(putname,putpassword); intm=cs.getCount(); if(m==0){ Stringtips="你输入的用户名或密码有误"; Toasttoast=Toast.makeText(getApplicationContext(),tips,20000); toast.show(); }else{ Intentintent=newIntent(MainActivity.this,MenuActivity.class); intent.putExtra("name",putname); MainActivity.this.startActivity(intent); } } });(2)新增课程时,查询这一天的所有课程,若已有的课程和添加的课程节次相同则冲突,则提示这节已经有课,若无可进行添加,并跳转会课程表界面查看Cursorcs=db.query("schedule",newString[]{"time"},"day='"+day+"'",null,null,null,null); cs.moveToFirst(); while(!cs.isAfterLast()){ Stringcheck=cs.getString(cs.getColumnIndex("time")); if(check.equals(timeclass)){ Stringtips="这节已经有课"; Toasttoast=Toast.makeText(getApplicationContext(),tips,20000); toast.show(); return; } cs.moveToNext(); } cs.close(); Stringsql="insertintoschedule('couesename','room','week','day','time','teachername')"+ "values('"+couesename+"','"+room+"','"+week+"','"+day+"','"+timeclass+"','"+teachername+"')"; db.execSQL(sql);(3)通过上下文菜单的方法,长按笔记列表,会出现设置好删除菜单,通过onContextItemSelected响应菜单,并获得所选择的菜单。通过info.targetView查找到长按的视图,并获得TextView里的时间字符串,根据字符串进入数据库进行查找并删除,再跟新listView;this.registerForContextMenu(lv_notes);publicvoidonCreateContextMenu(ContextMenumenu,Viewv, ContextMenuInfomenuInfo){ menu.add(0,1,0,"删除"); } publicbooleanonContextItemSelected(MenuItemitem){ AdapterContextMenuInfoinfo=(AdapterContextMenuInfo)item.getMenuInfo(); if(item.getItemId()==1){ //获取当前的视图 TextViewtv=(TextView)info.targetView.findViewById(R.id.tv_showwritetime); Stringstr=tv.getText().toString(); Stringsql="deletefromnoteswherewritetime='"+str+"'"; db.execSQL(sql); //通知更新显示ListV cs=db.query("notes",newString[]{"_id","writetime","notesname"},null,null,null,null,null,null); adapter=newSimpleCursorAdapter(this,R.layout.notes_layout,cs, newString[]{"writetime","notesname"}, newint[]{R.id.tv_showwritetime,R.id.tv_shownotesname}); lv_notes.setAdapter(adapter); //adapter.notifyDataSetChanged(); } returnfalse; }新建了一个DBHelper辅助类继承SQLiteOpenHelper,新建数据库,新建表格,并对数据进行增删改查。onCreate()方法是建立表格,只进行一次。还可以根据版本号进行数据库的更新,在其他类中调用查询方法,并返回所查询的值。publicclassDBHelperextendsSQLiteOpenHelper{ privatestaticfinalintVersion=1; privatestaticfinalStringDBNAME="cc"; privatestaticfinalStringsql_createschedule="createtableschedule(_idintegerprimarykeyautoincrement,"+"couesenametext,"+"roomtext,"+"weektext,"+ "daytext,"+"timetext,"+"teachernametext)"; privatestaticfinalStringsql_createuserinformation="createtableuserinformation(_idintegerprimarykeyautoincrement,"+"nametext,"+"passwordtext,"+"imageidinteger)"; privatestaticfinalStringsql_createnotes="createtablenotes(_idintegerprimarykeyautoincrement,"+"writetimetext,"+"notesnametext,"+"notestext)"; publicDBHelper(Contextcontext){ super(context,DBNAME,null,Version); } publicvoidonCreate(SQLiteDatabasedb){ db.execSQL(sql_createschedule); db.execSQL(sql_createuserinformation); db.execSQL(sql_createnotes); } publicvoidonUpgrade(SQLiteDatabasearg0,intarg1,intarg2){ } publicCursorlogin(Stringputname,Stringputpassword){ SQLiteDatabasedb=this.getReadableDatabase(); Cursorcslogin=db.query("userinformation",null,"name='"+putname+"'andpassword='"+putpassword+"'",null,null,null,null,null); returncslogin; } publicvoidaegister(Stringnewname,Stringnewpassword,intimageid){ SQLiteDatabasedb=this.getReadableDatabase(); Stringsql="insertintouserinformation('name','password','imageid')"+ "values('"+newname+"','"+newpassword+"','"+imageid+"')"; db.execSQL(sql); } publicCursorcheckname(Stringnewname){ SQLiteDatabasedb=this.getReadableDatabase(); Cursorcscheckname=db.query("userinformation",newString[]{"name"},"name='"+newname+"'",null,null,null,null,null); returncscheckname; } publicCursorqueryschedule(){ SQLiteDatabasedb=this.getReadableDatabase(); Cursorcsschedule=db.query("schedule",null,null,null,null,null,null); returncsschedule; } publicvoidaddcosuses(Stringcouesename,Stringroom,Stringweek,Stringday,Stringtimeclass,Stringteachername){ SQLiteDatabasedb=this.getReadableDatabase(); Stringsql="insertintoschedule('couesename','room','week','day','time','teachername')"+"values('"+couesename+"','"+room+"','"+week+"','"+day+"','"+timeclass+"','"+teachername+"')"; db.execSQL(sql); } publicvoidwritenotes(Stringwritetime,Stringnotesname,Stringnotes){ SQLiteDatabasedb=this.getReadableDatabase(); Stringsql="insertintonotes(writetime,notesname,notes)values('"+writetime+"','"+notesname+"','"+notes+"')"; db.execSQL(sql); } publicCursor
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 跨国合同纠纷处理
- 轮胎采购合同示范
- 软件技术合作与开发合同
- 软件购置合同格式示例
- 轻松学好高中化学
- 进口手表零售购销合同
- 进度合作合同协议
- 迟到员工的决心与誓言保证书
- 配电箱设备安装施工合同工程地点
- 酒店转让合同的履行监管
- 2023年中国中信金融资产管理股份有限公司北京市分公司招聘考试真题
- 2024年建筑施工合同模板(住建部制定)
- 防凝冻安全教育
- 《如何带好团队》课件
- 定制合同范例 博客
- 2024-2030年中国锅炉行业供需趋势及投资策略分析报告
- 《西藏自治区三年级上学期数学期末试卷全攻略》
- 2024-2030年中国激光行业未来发展趋势及投资潜力分析报告
- 河南省部分名校2024-2025学年高三上学期11月阶段性测试(三)(期中)地理 含答案
- 部编小语六上《爱的教育》整本书阅读学习任务群教学设计
- 工余安健环知识培训
评论
0/150
提交评论