智能移动终端软件开发实验报告
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
实验题目实验一:描述用户界面
实验地点502实验日期3-24机器号27
一、实验目的
学会写自己的第一个Android程序,从最简单的从模拟器上输出“Hello,world!”开始。
二、实验内容
1,先自己创建一个项目。
2.此时在窗口右边有一个“Activities”的项目,右击部署到模拟器上
三、实验步骤及结果
1, helloActivity.JAVA
package net.lightwinner.app;
import android.app.Activity;
import android.os.Bundle;
package net.lightwinner.app;
import android.app.Activity;
import android.os.Bundle;
package net.lightwinner.app;
package net.lightwinner.app;
import android.app.Activity;
package net.lightwinner.app;
import android.app.Activity;
import android.os.Bundle;
public class helloActivity extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(yout.main);
}
}
2.MAIN.JAVA
android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent"> android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="@string/hello"/>
3.STRING
四、小结(问题及收获)
让屏幕上显示“Hello,world!”,窗口右边有一个“Activities”的项目,打开项目,里面有“res”选项,打开后有“layout>main.xml”,打开如
下:,屏幕上输出的“Hello world, main ”可能出自这里,试着把中的“@string/hello”改为“Hello,world!”则屏幕上输出了。
实验科目智能移动终端软件开发
实验题目实验二:BMI应用程序设计
实验地点5-502实验日期4-12机器号27
一、实验目的
初步掌握Android布局开发并运用多个TextView界面组件。
二、实验内容
设计一个允许我们输入身高,体重并计算bmi值的程序,在屏幕上显示bmi 的同时,并弹出“你应该节食或多吃”的信息。只要bmi超过25就算偏胖,低于20就算偏瘦。
三、实验步骤及结果
1.代码
(1)main
android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent"> android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="身高(cm)"/> android:layout_width="fill_parent" android:layout_height="wrap_content" android:numeric="integer" android:text=""/> android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="体重(kg)"/>