freepeople性欧美熟妇, 色戒完整版无删减158分钟hd, 无码精品国产vα在线观看DVD, 丰满少妇伦精品无码专区在线观看,艾栗栗与纹身男宾馆3p50分钟,国产AV片在线观看,黑人与美女高潮,18岁女RAPPERDISSSUBS,国产手机在机看影片

正文內容

基于android手機的校園助手軟件的設計與實現網絡工程專業(yè)畢業(yè)論文(文件)

2024-11-28 07:16 上一頁面

下一頁面
 

【正文】 圖 所示。 圖 程序結構圖 為了使源代碼文件的結構更加清晰, CompusAssistant 工程設置了多個命名空間,分別用來保存用戶界面、數據庫、后臺服務和工具實體的源代碼文件,源代碼文件的名稱以及說明 如表 51 所示。 2 服務器端程序結構 建立服務器端工程名字為 myServer, tomcat [4]部署項目用的 工程名字為 server。 主要模塊流程圖 用戶登錄流程圖,如圖 所示。 25 圖 圖書查詢流程圖 圖 圖書借閱與續(xù)借流程圖 公告信息查詢流程圖,如圖 所示。 28 圖 主界面 3 圖書信息界面和公告信息界面都采用 Tab 布局,左右切換標簽, Tab 代碼實現如下: FrameLayout xmlns:android= android:layout_width=match_parent android:layout_height=match_parent android:background=color/green TextView android:id=+id/view1 android:layout_width=match_parent android:layout_height=match_parent android:text=string/tabs_tab_1/ TextView android:id=+id/view2 android:layout_width=match_parent android:layout_height=match_parent android:text=string/tabs_tab_2/ /FrameLayout 4 圖書信息、公告信息、成績信息、借閱信息的查詢結果均以 item 填充 list 形式填充顯示,結 構類似,其中圖書信息查詢布局的代碼實現如下: 1) book_list_main 的代碼 LinearLayout android:layout_width=fill_parent android:layout_height=wrap_content orientation=horizontal ListView android:layout_width=fill_parent android:layout_height=wrap_content 29 android:orientation=vertical android:id=+id/list /ListView /LinearLayout 2) book_list_item 的實現代碼 ! 書號 TextView android:layout_width=40dp android:layout_height=35dp android:textColor=FFFFFF android:id=+id/bno android:textSize=13dp android:layout_gravity=center_horizontal / ! 書名 TextView android:layout_width=200dp android:textColor=000000 android:layout_height=35dp android:id=+id/bname android:textSize=13dp android:layout_gravity=center_horizontal / ! 作者 TextView android:layout_width=80dp android:layout_height=35dp android:textColor=ffffff android:id=+id/bauthor android:textSize=13dp android:layout_gravity=center_horizontal / ! 狀態(tài) TextView android:layout_width=40dp android:layout_height=35dp android:textColor=000000 android:id=+id/bstate android:textSize=13dp android:layout_gravity=center_horizontal / !類別 TextView android:layout_width=80dp android:layout_height=35dp android:textColor=000000 android:i。 圖 成績查詢流程圖 圖 公告查詢流程圖 圖 公告上傳流程圖 圖書信息查詢輸入是否為空輸入檢索條件和檢索詞是否有值結束NYNY顯示檢索結果開始成績信息查詢輸入是否為空輸入學號姓名是否有值結束NYNY開始顯示檢索結果公告信息查詢點擊查詢條件是否有值結束NY開始顯示檢索結果公告上傳輸入上傳內容和類型輸入是否為空結束NY數據庫中數據發(fā)生變化上傳成功開始借閱信息查詢是否有借閱信息從登陸端獲取參數N是否已經續(xù)借數據庫端數據發(fā)生變化是否續(xù)借N結束YNYY開始顯示檢索結果 26 第六章 系統(tǒng)實現 主要界面代碼實現 1 登錄界面實現代碼 1)歡迎界面 TextView android:text=歡迎使用校園助手 android:textColor=color/text_black android:textSize=20sp android:id=+id/textView4 android:layout_width=wrap_content android:layout_height=wrap_content android:gravity=center_horizontal/TextView ImageView android:id=+id/imageview1 android:src=drawable/assistant android:layout_width=wrap_content android:layout_height=wrap_content android:layout_gravity=center_horizontal /ImageView 2)用戶名密碼輸入框 TextView android:text=用戶名 android:layout_height=wrap_content android:id=+id/textView1 android:textColor=color/text_black android:layout_width=wrap_content /TextView EditText android:text= android:layout_height=wrap_content android:id=+id/uid android:layout_width=match_parent /EditText TextView android:text=密碼 android:layout_height=wrap_content android:id=+id/textView2 android:textColor=color/text_black android:layout_width=wrap_content /TextView EditText android:text= android:layout_height=wrap_content android:password=true android:id=+id/pwd android:layout_width=match_parent /EditText 3)登錄、重置按鈕實現代碼 Button android:layout_weight=1 android:text=string/text1 android:textColor=color/text_black android:layout_height=wrap_content android:layout_width=wrap_content android:id=+id/loginbutton android:layout_gravity=fill_horizontal/Button Button android:layout_weight=1 android:layout_height=wrap_content android:layout_width=wrap_content android:id=+id/caclebutton android:text=string/text2 android:textColor=color/text_black android:layout_gravity=fill_horizontal/Button 4)登錄界面實現截圖如圖 所示。 開始用戶名密碼是否正確主界面YN輸入用戶名密碼結束 圖 用戶登錄流程圖 圖書續(xù)借信息查詢及續(xù)借流程圖,如圖 所示。 23 表 52 資源文件名稱與用途 資源目錄 文件名 說明drawablelayoutassistant . png這個文件夾里是工程里所用的圖片 , 如有 圖書信息 、 公告信息 、 成績信息等, 此處不贅述 。其中 /res/drawable/目錄中保存的是圖像文件, /res/values 目錄中保存的是用來自定義字符串和顏色的文件, /res/xml 目錄中保存的是 XML 格式的數據文件。 (進一步設計需要加表) 18 圖書信息表存放一些書籍的基本信息,用于對書籍的管理; 圖書借閱表存放的是對圖書的借閱信息,是對書籍信息的進一部描述;學生信息 表 存放的是學生基本信息是對 學生 信息表 的管理;學生成績表存放的是學生的成績信息,用于對成績的管理 ;管理員信息表用于對管理員的登錄進行管理; 用戶表儲存的是用戶的 登錄 信息; 公告信息表中存放的是校園公告信息。 借閱信息管理模塊:此模塊和圖書信息學生信息模塊關聯(lián),可以增加借閱信息,同時圖書信息里的圖書狀態(tài)會變?yōu)椤耙呀琛?,借出時間、歸還時間兩個字段會做相應的 17 更改;可以修改續(xù)借信息;可以刪除整條借閱信息,同時圖書表的圖書狀態(tài) 會變?yōu)椤翱山琛?,借出時間、歸還時間兩個字段會變?yōu)榭铡? 圖書管理模塊:此模塊可以對圖書進行查詢,增加,修改,可以刪除在架的圖書的信息,已經外借的圖書信息不可刪除。 公告信息 模塊: 包括公告信息查詢和公告上傳,公告種類包括失物招領、尋物啟事、校園兼職三類。 客戶端總體功能模塊如圖 所示 。 用戶登錄數據字典 : 14 名字:用戶登錄數據 描述:系統(tǒng)用戶的 數據 定義:用戶登錄數據 =用戶名、密碼 位置:用戶登錄數據表 圖書信息數據字典 : 名字:圖書信息 描述:學校圖書館里的圖書資料信息 定義:圖書信息 =書號、書名、作者、出版日期、書的狀態(tài)、出版社、版本、類型、借出時間、歸還時間 位置:圖書信息表中 借閱信息數據字典 : 名字:借閱信息 描述:學生借閱的基本信息 定義:借閱信息 =學號、書號、續(xù)借 位置:借圖書閱信息表中 學生信息數據字典 : 名字:學生信息 描述:學生的個人資料信息 定義:學生信息 =學號、姓名、性別、出生日期、班級 位置:學生信息表中 成 績信息數據字典 : 名字:學生成績信息 描述:學生的所有成績信息 定義:學生成績信息 =學號、姓名、數學、英語、網絡 配置、計算機組織與原理、網絡安全 位置:學生成績信息表中 公告信息數據字典 : 名字:公告信息 描述:公告的具體內容 定義:公告信息 =公告編號、公告內容、公告類
點擊復制文檔內容
公司管理相關推薦
文庫吧 www.dybbs8.com
備案圖鄂ICP備17016276號-1