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

正文內(nèi)容

基于android平臺(tái)的高校學(xué)生管理系統(tǒng)的設(shè)計(jì)與實(shí)現(xiàn)-文庫(kù)吧

2025-04-24 08:34 本頁(yè)面


【正文】 文表 表 110公文表 1公文審批流程表 表 111 公文審批流程表 9 1公文流轉(zhuǎn)表 表 112 公文流轉(zhuǎn)表 1公文內(nèi)容表 表 113 公文內(nèi)容表 10 第 二 章 Android 高校學(xué)生管理系統(tǒng)實(shí)現(xiàn) 開(kāi)發(fā)平臺(tái)的搭建 首先要下載相關(guān)的軟件 (1). JDK 6 以上 (2). eclipse( Version or higher) (3). SDK(androidsdk_r18windows) 目前是最新的 安裝 JDK,配置環(huán)境變量: 在 eclipse 中安裝插件 , 打開(kāi) eclipse,點(diǎn)擊 help Install new Software 進(jìn)入后,點(diǎn)擊 add,命名 ADT 及 點(diǎn)擊 Archive選擇路徑指向 select all),點(diǎn)擊下一步 ...安裝時(shí)需要一定時(shí)間,在安裝的過(guò)程中會(huì)出現(xiàn)一些提示,點(diǎn)擊允許即可, 安裝完 ADT插件后,點(diǎn)擊 window preference,發(fā)現(xiàn)左側(cè)列表上多了一項(xiàng) android,點(diǎn)擊 android 會(huì)提示錯(cuò)誤,是因?yàn)檫€沒(méi)有把 SDK 關(guān)聯(lián)到 ADT插件上。添加 SDK目標(biāo)位置如圖(沒(méi)有關(guān)聯(lián)是因?yàn)?addroid sdk manger 中缺少路徑。 圖 21 SDK目標(biāo)位置 把下載完的 androidsdk_r18windows 解壓開(kāi),如下圖所示: 11 圖 22 解壓 androidsdk_r18windows 注意:剛解壓開(kāi)的 sdk中 platforms 和 addons文件夾是空的(這就是第三步提示錯(cuò)誤的原因) 下一步雙擊 SDK 最好是下載全部的平臺(tái),下載比較慢,將近 1小時(shí) . 新建模擬器( AVD),點(diǎn)擊 eclipse 欄目上的那部綠色的手機(jī)進(jìn)入界面,點(diǎn)擊 new 進(jìn)入 ,填入相關(guān)信息 之后,點(diǎn)擊 Start,可以啟動(dòng) 模擬器了 圖 23 啟動(dòng)模擬器界面 點(diǎn)擊 launch 圖 24 launch操作示意圖 12 點(diǎn)擊 Launch之后 進(jìn)入 安卓操作界面,如圖 25所示。 圖 25 安卓操作界面 7. 設(shè)置語(yǔ)言,進(jìn)入主菜單,點(diǎn)擊 。如圖 26所示。 圖 26 安卓平臺(tái)主界面 主要功能模塊的實(shí)現(xiàn)與測(cè)試 13 系統(tǒng)登錄 系統(tǒng)登錄是使用本信息服務(wù)系統(tǒng)的前提。運(yùn)行程序,可以進(jìn)入系統(tǒng),首先進(jìn)行用戶類(lèi)型選擇,界面如圖 5 7所示。用戶選擇不同的端口進(jìn)入系統(tǒng)登錄界面。學(xué)生、教師、家長(zhǎng)登錄界面。 圖 27 系統(tǒng)登錄流程 圖 28 學(xué)生登錄界面 14 圖 29 教師 OA登錄界面 圖 210 系統(tǒng)管理員登錄界面 登錄主要實(shí)現(xiàn)代碼如下: import 。 import 。 import 。 import 。 public class ArticleFragment extends Fragment { public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { // Inflate the layout for this fragment return (, container, false)。 } 學(xué)生查詢(xún)交流系統(tǒng)實(shí)現(xiàn) 學(xué)生、教師和家長(zhǎng)查詢(xún)交流系統(tǒng)主界面 15 圖 211 學(xué)生教師查詢(xún)交流系統(tǒng)主界面 圖 212 家長(zhǎng)查詢(xún)交流系統(tǒng)主界面 教師查詢(xún)界面 圖 213 教師查詢(xún)主界面 圖 214學(xué)生基本信息查詢(xún)界面 查詢(xún)實(shí)現(xiàn)的主要代碼如下所示: import 。 import 。 public class MainActivity extends FragmentActivity { @Override public void onCreate(Bundle savedInstanceState) { (savedInstanceState)。 setContentView()。 } } 調(diào)用 XML代碼如下: LinearLayout xmlns: android=: // android: orientation=horizontal android: layout_width=fill_parent android: layout_height=fill_parent fragment android: name= android: id=@+id/headlines_fragment android: layout_weight=1 android: layout_width=0dp android: layout_height=match_parent / fragment android: name= android: id=@+id/article_fragment 16 android: layout_weight=2 android: layout_width=0dp android: layout_height=match_parent / /LinearLayout 信息錄入功能 215信息錄入功能 216學(xué)生獲獎(jiǎng)信息錄入 217其他錄入信息 218提交成功對(duì)話框 主要實(shí)現(xiàn)的代碼如下所示: import 。 import 。 public class MainActivity extends FragmentActivity { 17 @Override public void onCreate(Bundle savedInstanceState) { (savedInstanceState)。 setContentView()。 // Check that the activity is using the layout version with // the fragment_container FrameLayout if (findViewById() != null) { // However, if we39。re being restored from a previous state, // then we don39。t need to do anything and should return or else // we could end up with overlapping fragments. if (savedInstanceState != null) { return。 } // Create an instance of ExampleFragment HeadlinesFragment firstFragment = new HeadlinesFragment()。 // In case this activity was started with special instructions from an Intent, // pass the Intent39。s extras to the fragment as arguments (getIntent().getExtras())。 // Add the fragment to the 39。fragment_container39。 FrameLayout getSupportFragmentManager().beginTransaction() .add(, firstFragment).mit()。 } } } 信息發(fā)布功能 18 219信息發(fā)布功能主界面 220校園信息發(fā)布界面 221信息服務(wù)系統(tǒng)界面 222新聞信息查詢(xún)界面 主要實(shí)現(xiàn)的代碼如下所示: // Create fragment an
點(diǎn)擊復(fù)制文檔內(nèi)容
醫(yī)療健康相關(guān)推薦
文庫(kù)吧 www.dybbs8.com
備案圖鄂ICP備17016276號(hào)-1