安卓課程表課程設計報告_第1頁
安卓課程表課程設計報告_第2頁
安卓課程表課程設計報告_第3頁
安卓課程表課程設計報告_第4頁
安卓課程表課程設計報告_第5頁
已閱讀5頁,還剩11頁未讀, 繼續(xù)免費閱讀

下載本文檔

版權說明:本文檔由用戶提供并上傳,收益歸屬內容提供方,若內容存在侵權,請進行舉報或認領

文檔簡介

1、南京曉莊學院【移動開發(fā)應用框架】課程設計報告課程表的設計與實現(xiàn)所在院 ( 系): 信息工程學院學號: 13139173學生姓名: 陳倡年級專業(yè): 軟件工程指導教師: 李青提交日期:2015 年12月課程設計實驗報告課程設計實驗報告班級13軟工 4姓名陳倡學號13139173任課教師李青實驗日期2015.12成績一、 目的( 本次課程設計的概要以及所涉及的知識點。)1. 課程表課程的添加與實現(xiàn)2. 記錄筆記并可以查看設計知識點:數(shù)據庫的數(shù)據的新增,查詢,刪除等,輔助類,上下文菜單的使用;二、使用環(huán)境(本次實踐所使用的平臺和相關軟件。)SDK:(software development kit )

2、軟件開發(fā)工具包。被軟件開發(fā)工程師用于為特定的軟件包、軟件框架、 硬件平臺、 操作系統(tǒng)等建立應用軟件的開發(fā)工具的集合。因此, Android SDK 指的是 Android 專屬的軟件開發(fā)工具包。使用 Eclipse 進行 android 應用開發(fā)需要給 Eclipse 裝 ADT 插件,這樣 Eclipse 就可以和 android ADT 建立連接,可以在 Eclipse 中啟動 android 模擬器進行程序調試等。三、內容與設計思想( 1 設計思路 2主要功能說明 3主要的模塊結構4主要代碼分析。 )1. 課程與筆記是私有的,所以設置用戶名與密碼登陸,在課程表中應有一個顯示界面,用于顯示

3、已添加的課程,點擊新增按鈕進入新增界面,用于增加新的課程,需添加上課的星期和課的節(jié)次,并檢查當前是否有課,并提示。保存后進入課表顯示界面,查看課表。筆記中有一筆記列表,顯示創(chuàng)建筆記的時間和標題。點開筆記可以查看詳細內容。也可以進行筆記的新增。若長按筆記。則可以進行刪除操作。2. 登錄進入菜單,若無用戶,可以注冊。課程表,查看已經有課程,新增課程并保存。筆記,查看已有筆記,查看詳細筆記,新增筆記,刪除筆記。第頁共頁課程設計實驗報告3. 整個程序包含兩個大的模塊:課程表模塊和筆記模塊;課程表中包含顯示和新增兩個模塊;筆記中有顯示列表模塊,新增模塊,和查看模塊4. (1)用戶登錄時,根據用戶名與密碼

4、進入數(shù)據庫中查詢,若有返回值為1,表示有該用戶,進行界面的跳轉,進去菜單界面。若返回值為0 ,則表示用戶名或密碼錯誤,并提示。but_login.setOnClickListener(new OnClickListener() publicvoidonClick(View arg0) String putname =edit_putname.getText().toString();String putpassword =edit_putpassword.getText().toString();Cursor cs =dbhelper.login(putname, putpassword);i

5、ntm = cs.getCount();if(m=0)String tips =" 你輸入的用戶名或密碼有誤" ;Toasttoast= Toast.makeText (getApplicationContext(),tips,20000);toast.show(); else Intent intent =new Intent(MainActivity.this,MenuActivity.class);intent.putExtra("name" , putname);MainActivity.this.startActivity(intent););

6、( 2)新增課程時,查詢這一天的所有課程,若已有的課程和添加的課程節(jié)次相同則沖突,則提示這節(jié)已經有課,若無可進行添加,并跳轉會課程表界面查看Cursor cs =db .query("schedule",new String"time","day='"+day+ "'",null,null,null,null);cs.moveToFirst();while(!cs.isAfterLast()String check = cs.getString(cs.getColumnIndex("tim

7、e");if (check.equals(timeclass)String tips =" 這節(jié)已經有課" ;Toast toast = Toast.makeText (getApplicationContext(),tips, 20000);toast.show();return;cs.moveToNext();cs.close();第頁共頁課程設計實驗報告String sql ="insert intoschedule('couesename','room','week','day',&

8、#39;time','teachername')"+"values('"+couesename+ "','"+room+ "','"+week+ "','"+day+ "','"+timeclass+"','"+teachername+"')"db .execSQL(sql);( 3)通過上下文菜單的方法,長按筆記列表,會出現(xiàn)設

9、置好刪除菜單,通過onContextItemSelected響應菜單,并獲得所選擇的菜單。通過info.targetView查找到長按的視圖,并獲得 TextView 里的時間字符串,根據字符串進入數(shù)據庫進行查找并刪除,再跟新 listView ;this.registerForContextMenu(lv_notes);publicvoidonCreateContextMenu(ContextMenu menu, View v,ContextMenuInfo menuInfo) menu.add(0, 1,0," 刪除 " );publicbooleanonContext

10、ItemSelected(MenuItem item)AdapterContextMenuInfo info = (AdapterContextMenuInfo)item.getMenuInfo();if(item.getItemId()=1)/ 獲取當前的視圖TextView tv =(TextView)info.targetView.findViewById(R.id.tv_showwritetime);String str = tv.getText().toString();String sql ="delete from notes where writetime='

11、"+str+"'"db .execSQL(sql);/ 通知更新顯示ListVcs = db .query("notes", new String"_id", "writetime", "notesname",null,null,null,null,null,null);adapter= new SimpleCursorAdapter(this,R.layout.notes_layout, cs ,new String"writetime", "n

12、otesname",new intR.id.tv_showwritetime,R.id.tv_shownotesname);lv_notes.setAdapter(adapter);/adapter.notifyDataSetChanged();returnfalse;( 4)新建了一個 DBHelper 輔助類繼承 SQLiteOpenHelper ,新建數(shù)據庫,新建表格,并對數(shù)據進行增刪改查。 onCreate ()方法是建立表格,只進行一次。還可以根據版本號進行數(shù)據庫的更新,在其他類中調用查詢方法,并返回所查詢的值。publicclassDBHelperextendsSQLit

13、eOpenHelper第頁共頁課程設計實驗報告privatestaticfinalintVersion = 1 ;privatestaticfinalStringDBNAME= "cc" ;privatestaticfinalStringsql_createschedule="create tableschedule(_id integer primary key autoincrement,"+ " couesename text,"+ " roomtext,"+"week text,"+&q

14、uot;day text,"+"time text,"+"teachername text)"privatestaticfinalStringsql_createuserinformation="create tableuserinformation(_id integer primary key autoincrement,"+" name text,"+"password text,"+"imageid integer)"privatestaticfinalSt

15、ringsql_createnotes="create table notes(_idintegerprimarykey autoincrement,"+ "writetimetext,"+"notesnametext,"+ "notestext)"publicDBHelper(Context context) super (context,DBNAME,null,Version);publicvoidonCreate(SQLiteDatabase db) db.execSQL(sql_createschedule

16、);db.execSQL(sql_createuserinformation);db.execSQL(sql_createnotes);publicvoidonUpgrade(SQLiteDatabase arg0,intarg1,intarg2) publicCursor login(String putname,String putpassword)SQLiteDatabase db =this.getReadableDatabase();Cursor cslogin = db.query("userinformation", null, "name='

17、;"+putname+ "'and password ='"+putpassword+"'", null, null, null, null, null);returncslogin;publicvoidaegister(String newname,String newpassword,intimageid)SQLiteDatabase db =this.getReadableDatabase();String sql ="insert intouserinformation('name',&

18、#39;password','imageid')"+" values('" +newname+ "','" +newpassword+ "','" +imageid+ "')" ; db.execSQL(sql);publicCursor checkname(String newname)SQLiteDatabase db =this.getReadableDatabase();Cursorcscheckname= db.query(

19、"userinformation", new String"name" ,"name = '"+newname+ "'",null,null,null,null,null);returncscheckname;publicCursor queryschedule()SQLiteDatabase db =this.getReadableDatabase();Cursorcsschedule= db.query("schedule",null,null,null,null,null,

20、第頁共頁課程設計實驗報告null);returncsschedule;publicvoidaddcosuses(String couesename,String room,String week,Stringday,String timeclass,String teachername)SQLiteDatabase db =this.getReadableDatabase();String sql ="insert intoschedule('couesename','room','week','day','ti

21、me','teachername')"+ "values('"+couesename+ "','"+room+ "','"+week+ "','"+day+ "','"+timeclass+"','"+teachername+"')"db.execSQL(sql);publicvoidwritenotes(String writ

22、etime,String notesname,String notes)SQLiteDatabase db =this.getReadableDatabase();String sql ="insert into notes(writetime,notesname,notes)values('"+writetime+"','"+notesname+"','"+notes+ "')"db.execSQL(sql);publicCursor querynotes()SQLiteDatabase db =this.getReadableDatabase();Cursor cs = db.query(&q

溫馨提示

  • 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
  • 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權益歸上傳用戶所有。
  • 3. 本站RAR壓縮包中若帶圖紙,網頁內容里面會有圖紙預覽,若沒有圖紙預覽就沒有圖紙。
  • 4. 未經權益所有人同意不得將文件中的內容挪作商業(yè)或盈利用途。
  • 5. 人人文庫網僅提供信息存儲空間,僅對用戶上傳內容的表現(xiàn)方式做保護處理,對用戶上傳分享的文檔內容本身不做任何修改或編輯,并不能對任何下載內容負責。
  • 6. 下載文件中如有侵權或不適當內容,請與我們聯(lián)系,我們立即糾正。
  • 7. 本站不保證下載資源的準確性、安全性和完整性, 同時也不承擔用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。

評論

0/150

提交評論