下載本文檔
版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進(jìn)行舉報或認(rèn)領(lǐng)
文檔簡介
..Android應(yīng)用開發(fā)——標(biāo)準(zhǔn)體重計開發(fā)1實(shí)驗?zāi)康恼莆誥ndroid項目文件構(gòu)成掌握UI構(gòu)建方式掌握string資源文件引用實(shí)驗任務(wù):開發(fā)標(biāo)準(zhǔn)體重計算器Android應(yīng)用,最后請輸入自己的身高,提交運(yùn)行截圖〔貼在試驗報告里實(shí)驗過程:目標(biāo)Android應(yīng)用的操作過程是這樣的:選擇你的性別,然后輸入你的身高,點(diǎn)查看計算結(jié)果的按鈕就在Toast中顯示你的標(biāo)準(zhǔn)體重。力求操作簡單,結(jié)果顯示清楚。標(biāo)準(zhǔn)體重的計算公式:男性:<身高cm-80>×70﹪=標(biāo)準(zhǔn)體重女性:<身高cm-70>×60﹪=標(biāo)準(zhǔn)體重按照以下步驟操作:1,沒法用真機(jī)測試的,先新建模擬器,并開啟它〔會有點(diǎn)慢,不要緊,等你把代碼寫完后,肯定已經(jīng)開啟了,開了后就別關(guān)了,切記,因為開啟它實(shí)在太浪費(fèi)時間了2、新建android項目,命名為BMIActivity,依次設(shè)置,最好直接把最低兼容級別設(shè)置到4.03、然后構(gòu)建UI界面:在res/layout目錄下雙擊打開xml文件進(jìn)行界面設(shè)計實(shí)現(xiàn)的界面效果:相應(yīng)的XML代碼為:<?xmlversion="1.0"encoding="utf-8"?><LinearLayoutxmlns:android="/apk/res/android"android:orientation="vertical"android:layout_width="fill_parent"android:layout_height="fill_parent"><TextViewandroid:id="@+id/txt"android:layout_width="fill_parent"android:layout_height="wrap_content"android:gravity="center"android:text="@string/hello"android:textSize="16px"/><TextViewandroid:layout_width="fill_parent"android:layout_height="wrap_content"android:text="@string/sex"/><RadioGroupandroid:layout_width="fill_parent"android:layout_height="wrap_content"android:orientation="horizontal"><RadioButtonandroid:id="@+id/male"android:layout_width="wrap_content"android:layout_height="wrap_content"android:text="男"/><RadioButtonandroid:id="@+id/female"android:layout_width="wrap_content"android:layout_height="wrap_content"android:text="女"/></RadioGroup><TextViewandroid:layout_width="fill_parent"android:layout_height="36px"android:text="@string/heigh"/><EditTextandroid:id="@+id/edit_height"android:layout_width="fill_parent"android:layout_height="wrap_content"/><Buttonandroid:id="@+id/btn"android:layout_width="fill_parent"android:layout_height="wrap_content"android:text="@string/count"/></LinearLayout>其中文字引用了字符資源文件,請把res/values下的strings.xml改為如下:<?xmlversion="1.0"encoding="utf-8"?><resources><stringname="app_name">計算標(biāo)準(zhǔn)體重</string><stringname="action_settings">Settings</string><stringname="sex">請選擇男女</string><stringname="hello">計算標(biāo)準(zhǔn)體重</string><stringname="heigh">您的身高〔單位:cm</string><stringname="count">計算</string></resources>應(yīng)用的JAVA源碼:注意第一行package不要復(fù)制,自己JAVA文件里package那行不要去掉BMIActivity.java:packagecom.example.bmiactivity;importjava.text.DecimalFormat;importjava.text.NumberFormat;importandroid.app.Activity;importandroid.os.Bundle;importandroid.view.View;importandroid.view.View.OnClickListener;importandroid.widget.Button;importandroid.widget.EditText;importandroid.widget.RadioButton;importandroid.widget.Toast;/**@authorlingdududu*該程序的功能是用戶選擇自己的性別和輸入自己的身高,然后點(diǎn)擊按鈕,就能在Toast顯示出自己的標(biāo)準(zhǔn)體重*/publicclassBMIActivityextendsActivity{/**Calledwhentheactivityisfirstcreated.*/privateButtoncountButton;privateEditTextheighText;privateRadioButtonmaleBtn,femaleBtn;Stringsex="";doubleheight;@OverridepublicvoidonCreate<BundlesavedInstanceState>{super.onCreate<savedInstanceState>;setContentView<R.layout.activity_bmi>;//調(diào)用創(chuàng)建視圖的函數(shù)creadView<>;//調(diào)用性別選擇的函數(shù)sexChoose<>;//調(diào)用Button注冊監(jiān)聽器的函數(shù)setListener<>;}//響應(yīng)Button事件的函數(shù)privatevoidsetListener<>{countButton.setOnClickListener<countListner>;}privateOnClickListenercountListner=newOnClickListener<>{@OverridepublicvoidonClick<Viewv>{//TODOAuto-generatedmethodstubToast.makeText<BMIActivity.this,"你是一位"+sexChoose<>+"\n"+"你的身高為"+Double.parseDouble<heighText.getText<>.toString<>>+"cm"+"\n你的標(biāo)準(zhǔn)體重為"+getWeight<sexChoose<>,height>+"kg",Toast.LENGTH_LONG>.show<>;}};//性別選擇的函數(shù)privateStringsexChoose<>{if<maleBtn.isChecked<>>{sex="男性";}elseif<femaleBtn.isChecked<>>{sex="女性";}returnsex;}//創(chuàng)建視圖的函數(shù)publicvoidcreadView<>{//txt=<TextView>findViewById<R.id.txt>;countButton=<Button>findViewById<R.id.btn>;heighText=<EditText>findViewById<R.id.edit_height>;maleBtn=<RadioButton>findViewById<R.id.male>;femaleBtn=<RadioButton>findViewById<R.id.female>;//txt.setBackgroundResource<R.drawable.bg>;}//標(biāo)準(zhǔn)體重格式化輸出的函數(shù)privateStringformat<doublenum>{NumberFormatformatter=newDecimalFormat<"0.00">;Stringstr=formatter.format<num>;returnstr;}//得到標(biāo)準(zhǔn)體重的函數(shù)privateStringgetWeight<Stringsex,doubleheight>{height=Double.parseDouble<heighText.getText<>.toString<>>;Stringweight="";if<sex.equa
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負(fù)責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時也不承擔(dān)用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 2025年度燃?xì)夤艿拦こ淘O(shè)備采購與銷售合同范本2篇
- 二零二五年度二手電動車買賣及充電設(shè)備租賃合同2篇
- 二零二五年度企業(yè)員工加班補(bǔ)貼合同3篇
- 2025年度校車駕駛員聘用合同(含駕駛員績效考核與激勵機(jī)制)3篇
- 2024年糧食買賣協(xié)議
- 2025年度版權(quán)許可合同的版權(quán)作品和許可方式3篇
- 2024版福永指標(biāo)房買賣合同協(xié)議書
- 2024版房地產(chǎn)經(jīng)紀(jì)合同范本
- 2024年通風(fēng)設(shè)備租賃與安裝服務(wù)合同范本3篇
- 2024年虛擬現(xiàn)實(shí)內(nèi)容創(chuàng)作保密協(xié)議
- 主題班會記錄表20篇
- 2024年北京通建信息系統(tǒng)有限公司招聘筆試參考題庫含答案解析
- 秦代建筑配色特征研究報告
- 安徽省建設(shè)工程工程量清單計價依據(jù)說明
- 冷庫安全操作規(guī)程培訓(xùn)
- 省級非急救醫(yī)療轉(zhuǎn)運(yùn)管理規(guī)范
- 課程設(shè)計DLP4-13型鍋爐中硫煙煤煙氣袋式除塵濕式脫硫系統(tǒng)設(shè)計
- 煤泥綜合利用的可行性研究報告
- 三年級《剪窗花》課件
- 四川省自貢市2022-2023學(xué)年八年級上學(xué)期期末語文試題
- 中國各省省會-地級市-縣級市明細(xì)表-
評論
0/150
提交評論