- 1、本文档共5页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
安卓计算器小程序安卓计算小程序
PAGE
学生实训(验)报告单
课程名称:Google Android开发
指导教师: 冯 曼
班级名称: 11级移动通信1班
学年学期:2012-2013学年第1学
信息科学与工程学院
信息科学与工程学院学生实训(验)报告单
学号: 2011 姓名: 彭法亮
项目名称计算BMI值的程序实训目的掌握Android用户界面开发基础
掌握Button、EditText、TextView组建
3. 掌握MVC设计模式实训内容编写计算BMI值的程序,通过输入身高、体重值,计算其BMI值,并给出健康建议。实训步骤
新建程序BMI:
所需资料:
1.TextView控件能向用户展现文本信息 :
TextView //现行版面配置
android:layout_width=fill_parent //定义当前视图在屏目上的宽度
android:layout_height=wrap_content //定义当前视图在屏幕上的高度
android:text=身高 (cm)
/
2.EditText控件需要用户输入信息,然后获得内容,交给服务器判断。
EditText android:id=@+id/height
android:layout_width=fill_parent
android:layout_height=wrap_content
android:numeric=“integer
android:text=
/
3.按钮
Button android:id=@+id/submit
android:layout_width=wrap_content
android:layout_height=wrap_content
android:text=計算 BMI
/
4.在string.xml中注册所用信息:
string name=“height”身高(cm)/string
5.新增advice.xml:
advice_light 你该多吃点
advice_average 体型很棒哦
advice_heavy 你该节食了
6.按钮部分:
Button button = (Button)findViewById(R.id.submit);//按钮的监听
button.setOnClickListener(calcBMI); //监听事件的信息
private OnClickListener calcBMI = new OnClickListener() {
public void onClick(View v) {…..}}
7.编辑字段部分:
EditText fieldheight = (EditText)findViewById(R.id.height);
EditText fieldweight = (EditText)findViewById(R.id.weight);
8.运算部分:
double height = Double.parseDouble(fieldheight.getText().toString())/100;
double weight = Double.parseDouble(fieldweight.getText().toString());
double BMI = weight/(height*height);
9.显示结果:
TextView result = (TextView)findViewById(R.id.result);
DecimalFormat nf =new DecimalFormat(0.00);
result.setText(Your BMI is +nf.format(BMI));
10.提示建议部分:
TextView fieldsuggest = (TextView)findViewById(R.id.suggest);
if(BMI25) {
fieldsuggest.setText(R.string.advice_heavy);
}else if(BMI20) {
fieldsuggest.setText(R.string.advice_light);
}else {
fieldsuggest.setTex
文档评论(0)