跳到主要內容

臺灣博碩士論文加值系統

(216.73.216.17) 您好!臺灣時間:2025/09/03 18:25
字體大小: 字級放大   字級縮小   預設字形  
回查詢結果 :::

詳目顯示

我願授權國圖
: 
twitterline
研究生:吳昌潭
研究生(外文):Chang-tan Wu
論文名稱:適性化校園資訊於Android平台上之實現
論文名稱(外文):Adaptive Campus Information Implemented on Android Platform
指導教授:洪金車
指導教授(外文):King-Chu Hung
學位類別:碩士
校院名稱:國立高雄第一科技大學
系所名稱:電腦與通訊工程研究所
學門:工程學門
學類:電資工程學類
論文種類:學術論文
論文出版年:2012
畢業學年度:100
語文別:中文
論文頁數:105
中文關鍵詞:校園資訊資料庫谷歌地圖安卓
外文關鍵詞:SQLiteGoogle mapAndroid
相關次數:
  • 被引用被引用:1
  • 點閱點閱:287
  • 評分評分:
  • 下載下載:0
  • 收藏至我的研究室書目清單書目收藏:1
由於攜帶方便,手機已與日常生活緊密結合,透過手機存取網路資訊十分普遍。然而手機的螢幕尺寸有限,使用者透過手機瀏覽校園網頁時,常因網頁內容資訊太多,致需耗時尋找需要的功能與資訊。本論文應用情境式網頁瀏覽功能設計一適性化校園導覽系統。在此應用程式中,改善許多不必要的資訊以及將常用的功能作整合,使得使用者可以更方便的讀取資訊。
校園介紹系統架構是透過系所整合、校園資訊、校園特色、以及教職員學生常用功能作介紹。系所整合部分將各系以院級分類,並將各系特色特點獨立顯示。校園資訊除了可以利用手機瀏覽校園網頁相關內容外,另外將校園外的美食餐館一併顯示,透過與GOOGLE MAP的結合,提供更完善的導航路徑。校園資訊除了提供生活相關以外,並將校園內各系所的分機以SQLite建立分機資料庫,將全校各分機整合。校園特色依據高科大校園所選出的校園十景於手機上做呈現。教職員學生相關部分依據各身分的不同,將所屬相關訊息選向以條列式方式呈現,使相關人員可以更方便取得必要資訊。
實驗結果顯示,將校園系所分類分系介紹可以方便使用者尋找各系相關資訊,校園資訊的提供可以給校內教職員或學生更了解校外的生活圈,利用資料庫建立的校園分機查詢結構可以更準確找出分機號碼。整合以上條件,可建構出更方便的Android校園應用程式。
Smartphone has become an essential part of people’s daily lives for the advantages of convenience and portability it possesses, and it has also contributed to a commonplace to the public for searching and saving information online. However, the limited size of cell phone screens leads to a time-consuming situation while users are browsing the web pages on campus since there is too much unnecessary information being contained in the web. In this paper, we applied a situational internet exploring function to design an application which is basically adaptive to the campus tour. Moreover, through the application we collaborated useful functions in common use and tried deleting some unnecessary information; this makes a better convenience in reading the needed information.
This application is introduced based on the collaborated information of departments, campus, and characteristics of the school as well. We classified the departments and showed their characteristics. Some examples can be given like campus information including the spots in NKFUST and outside restaurants, by entering Google Map. It can provide the precise navigation. Also, we collaborated and developed corpus of the extensions by SQLite database for a quicker search.
The result showed that we can search the relevant information of the departments more conveniently, and the collaborated information provides faculties and students a better chance to be more familiar with the outside region of the school. Furthermore, we can find an extension more quickly by using the searching function which formed in SQLite. With all the things mentioned above, we established a handy application that can be utilized more conveniently in the future.
中文摘要 i
Abstract ii
誌謝 iv
第一章 緒論 1
1.1研究動機與目的 1
1.2 文獻探討 2
第二章 ANDROID簡介 3
2.1 Android基本概念 3
2.2 Android系統架構 3
2.3 Android環境開發建立 12
2.3.1 安裝Java開發套件JDK 12
2.3.2 安裝Eclipse圖形介面開發環境 13
2.3.3 安裝Android SDK開發套件 15
2.3.4 安裝ADT套件 16
2.4 Android應用程式架構 19
第三章 Android相關元件介面介紹 31
3.1 Intent 31
3.2 Call 32
3.3 Content providers 34
3.4 layout樣式 35
3.4.1 FrameLayout 35
3.4.2 LinearLayout 36
3.4.3 RelativeLayout 37
3.4.4 TableLayout 38
3.4.5 AbsoluteLayout 39
3.5 Menu 40
3.5.1 onCreateOptionsMenu() 40
3.5.2 onOptionsItemSelected() 41
3.6 Spinner 42
3.7 Dialog 43
3.8 ImageButton 44
3.9 RadioButton 45
第四章 相關技術研究 46
4.1 SQLite Databases 46
4.1.1 關聯式資料庫 47
4.2 Google地圖組成 49
4.2.1 Model(地圖模型) 49
4.2.2 View(地圖顯示) 49
4.2.3 Controller(地圖控制) 49
4.2.4 API Key 50
4.3 GPS定位 52
4.3.1 太空部分 54
4.3.2 地面管制部分 55
4.3.3 使用者接收機部分 56
4.3.4 GPS定位原理 56
4.3.5 GPS應用 58
4.3.6 GPS特點 59
4.4 WIFI定位 59
4.4.1 WIFI運作原理: 59
4.4.2 WIFI定位: 59
4.4.3經緯度資料庫建立 60
4.4.3 資料庫更新 61
4.4.4 定位方法設定 62
4.5 手機基地台定位 62
第五章 系統實作 63
5.1 系所分類介紹 65
5.1.1 工學院 65
5.1.2 電資學院 67
5.1.3 管理學院 69
5.1.4 財金學院 71
5.1.5 外語學院 73
5.1.6 行政單位 75
5.1.7 社團活動 77
5.2 教職員學生專區介紹 79
5.3 校園特色介紹 80
5.4 生活相關介紹 83
5.5 交通資訊介紹 85
5.6 連絡電話介紹 86
第六章 結論與未來展望 88
參考文獻 89
[1] 邵維揚,2006,以情境導向調適設計來實現適性化的網頁資訊呈現,國立
高雄第一科技大學,碩士論文。
[2] 王寶耀,2010,以GPS為基礎之車輛追蹤系統設計與實作,國立高雄第一
科技大學,碩士論文。
[3] 顏得恩,2010,安卓系統移植安裝至Freerunner手機,清雲科技大學,碩
士論文。
[4] 安守中,進階GPS定位原理與應用,全華圖書股份有限公司。
[5] Android Developers, http://developer.android.com/index.html
[6] Eclipse,http://www.eclipse.org/downloads/
[7] Java,http://www.oracle.com/technetwork/java/index.html
[8] 楊文誌,Android程式設計與應用,初版,旗標出版股份有限公司。
[9] 廖文良,Google Android 2.X應用程式開發實戰,碁峯資訊股份有限公司。
[10] 蓋索林,Android手機應用程式設計入門第2版,松崗資訊股份有限公司。
[11] 陳小鳳,Google Android SDK開發範例大全,悅知文化出版社。
[12] 江寬,Google API開發詳解Google Map與Google Earth雙劍合璧,文魁
資訊股份有限公司。
[13] 維基百科,全球定位系統,http://zh.wikipedia.org/zh-hk/GPS。
[14] GPS,
http://dns.pmsh.tnc.edu.tw/~wiki/97107/index.php/GPS。
[15] Google 街景車,
http://blog.yam.com/meson/article/23498175 。
[16] 張亞飛,徹底研究iPhone Android Windows Phone BlackBerry
手機專用網頁及網站設計最佳實踐與設計精粹,上奇資訊股份有限公司。
[17] 邵子卿,Smartphone智慧型手機網路應用程式開發實戰,
碁峯資訊股份有限公司。
[18] Android維基百科,
http://zh.wikipedia.org/wiki/File:Systemarchitecture.jpg。
QRCODE
 
 
 
 
 
                                                                                                                                                                                                                                                                                                                                                                                                               
第一頁 上一頁 下一頁 最後一頁 top