智能移动终端软件开发实验报告
更新时间:2023-05-24 20:33:01 阅读量: 实用文档 文档下载
实验题目 实验地点
实验一:描述用户界面 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<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent"> <TextView android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="@string/hello" /> </LinearLayout>
3.STRING<?xml version="1.0" encoding="utf-8"?> <resources> <string name="hello">Hello World, helloActivity!</string> <string name="app_name">我的第一个应用</string> </resources>
四、小结(问题及收获) 让屏幕上显示“Hello,world!,窗口右边有一个“Activities”的项目, ” 打开项目,里面有“res”选项,打开后有“layout>main.xml”,打开如下:,屏幕上输出的“Hello world, main ”可能出自 这里,试着把 world! ”则屏幕上输出了。 中的“@string/hello”改为“Hello,
实验科目 实验题目 实验地点
智能移动终端软件开发 实验二:BMI 应用程序设计 5-502 实验日期 4-12 机器号 27
一、 实验目的 初步掌握 Android 布局开发并运用多个 TextView 界面组件。 二、 实验内容 设计一个允许我们输入身高, 体重并计算 bmi 值的程序, 在屏幕上显示 bmi 的同时,并弹出“你应该节食或多吃”的信息。只要 bmi 超过 25 就算偏胖,低 于 20 就算偏瘦。
三、实验步骤及结果 1.代码 (1)main<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent" <TextView android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="身高(cm)" /> <EditText android:id="@+id/height" android:layout_width="fill_parent" android:layout_height="wrap_content" android:numeric="integer" android:text="" <TextView android:layout_width="fill_parent" android:layout_
height="wrap_content" android:text="体重(kg)"/> <EditText android:id="@+id/weight" android:layout_width="fill_parent" android:layout_height="wrap_content" android:numeric="integer" android:text=""/> <Button android:id="@+id/submit" android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="计算BMI值" /> <TextView android:id="@+id/result" android:layout_width="fill_parent" android:layout_height="wrap_content" android:text=""/> <TextView android:id="@+id/suggest" android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="" </LinearLayout> /> /> >
(2)Activity.JAVA package com.demo.android.bmi; import java.text.DecimalFormat; import android.app.Activity;
import android.os.Bundle; import android.view.View; import android.view.View.OnClickListener; import android.widget.Button; import android.widget.EditText; import android.widget.TextView; public class Bmi extends Activity { /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(yout.main); Button button=(Button)findViewById(R.id.submit); button.setOnClickListener(calcBMI); } private OnClickListener calcBMI=new OnClickListener () { public void onClick(View v) { DecimalFormat nf=new DecimalFormat("0.00"); EditText fieldheight=(EditText)findViewById(R.id.height); EditText fieldweight=(EditText)findViewById(R.id.weight); double height=Double.parseDouble(fieldheight.getText().toString())/100; double weight=Double.parseDouble(fieldweight.getText().toString()); double BMI=weight/(height*height); TextView result=(TextView)findViewById(R.id.result); result.setText("Your BMI is "+nf.format(BMI)); TextView fieldsuggest=(TextView)findViewById(R.id.suggest); if(BMI>25) { fieldsuggest.setText(R.string.advice_heavy); } else if(BMI<20) { fieldsuggest.setText(R.string.advice_light); }else { fieldsuggest.setText(R.string.advice_average) } } }; } (3)STRING<?xml version="1.0" encoding="utf-8"?>
<resources> <string name="app_name">BMI</string> <string name ="height">身高(CM)</string> <string name ="weight">体重(KG)</string> <string name ="bmi_btn">计算BMI值</string> <string name ="bmi_result">你的BMI值是</string> </resources>
四、小结(问题及收获) 通过实验可以了解一下整个程序制作的过程和程序制作的思路,打消掉 了原先对在一门新的课程上的了解的误区和信心的不足。
实验科目 实验题目 实验地点
智能移动终端软件开发 实验三:添加列表活动(ListActivity) 5-502 实验日期 4-24 机器号 27
一、 实验目的 添加列表活动(ListActivity) 。 二、实验内容 1.用户在列表查看画面(原来的 Activity)上点选项目; 2.应用程序取得点击项目的 row ID; 3.应用程序用一个 Internet 携带 row ID 数据,前往新 Activity(编辑画面) ; 4.应用程序在新 Activity 中,取得传入的 row
ID 数据; 5.应用程序在新 Activity 中, 通过数据库接口来查询符合 row ID 的单笔条目; 6.应用程序在新 Activity 中,将查询到的条目显示在文本编辑字段中; 7.编辑完成后,按下 okay 按钮将修改保存到数据库,并回到列表查看画面。
三、实验步骤及结果 1,MainActivity package net.lightwinner.note; import android.app.Activity; import android.os.Bundle; public class MainActivity extends Activity { /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(yout.main); } } 2.MAIN<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent" <ListView android:id="@+id/android:list" android:layout_width="wrap_content" android:layout_height="wrap_content" <TextView android:id="@+id/empty" android:layout_width="wrap_content" android:layout_height="wrap_content" android:gravity="center_vertical" android:text="暂时没有数据显示"/> </LinearLayout> /> >
3.String<?xml version="1.0" encoding="utf-8"?> <resources> <string name="hello">Hello World, MainActivity!</string> <string name="app_name">记事本程序</string> </resources>
四、小结(问题及收获) “电话本”的实现,可以添加,方法源码有调用可以实现这个功能。 实验科目 实验题目 实验地点 智能移动终端软件开发 实验四:音频播放器 5-502 实验日期 5-12 机器号 27
一、实验目的 用智能移动终端软件开发实现音频播放器。 二、实验内容 设计一个音频播放器。 三、实验步骤及结果 1.string.xml<?xml version="1.0" encoding="utf-8"?> <resources> <string name="hello">Hello World, MainActivity!</string> <string name="app_name">音频播放器</string> <string name="filename">音频文件的名称</string> <string name="play">播放</string> <string name="pause">暂停</string> <string name="reset">重播</string> <string name="stop">停止</string> <string name="continues">继续</string> </resources>
2. MainActivity package net.lightwinner.audio;
import java.io.File; import java.io.IOException; import android.app.Activity; import android.media.MediaPlayer; import android.os.Bundle; import android.os.Environment; import android.util.Log; import android.view.View; import android.view.View.OnClickListener; import android.widget.Button; import android.widget.EditText; public class MainActivity extends Activity { private static final String TAG = "MainActivity"; private Button btnPlay; private Button btnPause; private Button btnReset; private Button btnStop; private EditText filename_field; private MediaPlayer mediaPlayer; private int position; /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super.on
Create(savedInstanceState); setContentView(yout.main); filename_field = (EditText)this.findViewById(R.id.filename); btnPlay = (Button)this.findViewById(R.id.play); btnPause = (Button)this.findViewById(R.id.pause); btnReset = (Button)this.findViewById(R.id.reset); btnStop = (Button)this.findViewById(R.id.stop); mediaPlayer = new MediaPlayer(); BtnOnClickListener listener = new BtnOnClickListener();
btnPlay.setOnClickListener(listener); btnPause.setOnClickListener(listener); btnReset.setOnClickListener(listener); btnStop.setOnClickListener(listener); } private final class BtnOnClickListener implements OnClickListener{ @Override public void onClick(View v) { // TODO Auto-generated method stub Button btn = (Button)v; try { switch(v.getId()){ case R.id.play: play(); break; case R.id.pause: if(mediaPlayer.isPlaying()){ mediaPlayer.stop(); position = mediaPlayer.getCurrentPosition(); btn.setText(R.string.continues); }else{ play(); mediaPlayer.seekTo(position); btn.setText(R.string.pause); position=0; } break; case R.id.reset: play(); mediaPlayer.seekTo(0); break; case R.id.stop: if(mediaPlayer.isPlaying()){ mediaPlayer.stop(); } break; } } catch (Exception e) { // TODO Auto-generated catch block //e.printStackTrace(); Log.e(TAG, e.toString()); }
} } private void play() throws IOException { String fileName = filename_field.getText().toString(); File file = File(Environment.getExternalStorageDirectory(),fileName); mediaPlayer.reset(); mediaPlayer.setDataSource(file.getAbsolutePath()); mediaPlayer.prepare();//缓冲数据 mediaPlayer.start(); } } 3.main<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent" > <TextView android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="@string/filename" /> <EditText android:layout_width="fill_parent" android:layout_height="wrap_content" android:id="@+id/filename" android:text="sens kaishin.mp3" /> <LinearLayout android:orientation="horizontal" android:layout_width="fill_parent" android:layout_height="fill_parent" <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@+id/play" android:text="@string/play" /> <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@+id/pause" android:text="@string/pause"/> <Button >
new
android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@+id/reset" android:text="@string/reset"/> <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@+id/stop" android:text="@string/stop" /> </LinearLayout></LinearLayout>
三、
小结(问题及收获) 曲目名称的显示,文件的加载,文件的读取,各个功能按钮的实现。 智能移动终端软件开发 实验五:添加新活动(Activity) 机器号 27
实验科目 实验题目 实
验地点
实验楼— 实验日期 2012-5-24 409 一、 实验目的 1.添加 xml 文件。 2.程序中创建新的 Activity 类文件。 3.原 Activity 类中添加 startActivity 函数。
二、实验内容 添加新活动(Activity) 。 三、实验步骤及结果 .代码 (1)main.xml 代码 <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent">
<TextView android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="主界面" /> <Button android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="打开" android:id="@+id/button" /> </LinearLayout> (2)other.xml代码 <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent"> <TextView android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="这是测试界面" /> </LinearLayout> (3)BMIActivity 代码 package net.lightwinner.activity; import android.app.Activity; import android.content.Intent; import android.os.Bundle; import android.view.View; import android.view.View.OnClickListener; import android.widget.Button; public class BMIActivity extends Activity { /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(yout.main); Button button= (Button)this.findViewById(R.id.button); button.setOnClickListener(new OnClickListener(){ @Override public void onClick(View v){ Intent intent= Intent(BMIActivity.this,OtherActivity.class); startActivity(intent); } }); }}
new
OtherActivity 代码 package net.lightwinner.activity; import android.app.Activity; import android.os.Bundle; public class OtherActivity extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { // TODO Auto-generated method stub super.onCreate(savedInstanceState); setContentView(yout.other); } }
四、小结(问题及收获) Java 的记事本实现的机器不同,其中的功能基本一致,添加删除等等 一些文本的输入设置,text 的文字区域也有显示功能,最后还得保存。 实验科目 实验题目 实验地点 智能移动终端软件开发 实验六:传送数据到新意图 502 实验日期 5-27 机器号 27
一、实验目的 传送数据到新意图。
二、实验内容 信息的显示,信息的归总,信息的浏览,和信息的使用。不同软件之间 信息的安全传递
三、实验步骤及结果1.BMIActivity
package net.lightwinner.activity; import android.app.Activity; import android.content.Intent; import android.os.Bundle; import android.view.View; import android.view.View.OnClickListener; import android.widget.Button; import android.widget.EditText; public class BMI
Activity extends Activity { /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(yout.main); Button button=(Button)this.findViewById(mit); final EditText height_field=(EditText)this.findViewById(R.id.height); final EditText weight_field=(EditText)this.findViewById(R.id.weight); button.setOnClickListener(new OnClickListener() { public void onClick(View v) { // TODO Auto-generated method stub Intent intent=new Intent(BMIActivity.this,ReportActivity.class); Bundle bundle=new Bundle(); String height=height_field.getText().toString(); String weight=weight_field.getText().toString(); bundle.putString("KEY_HEIGHT",height); bundle.putString("KEY_WEIGHT",weight); intent.putExtras(bundle); startActivity(intent); } }); } } 2.main<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="/apk/res/android"
android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent" > <TextView android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="身高(cm)" /> <EditText android:id="@+id/height" android:layout_width="fill_parent" android:layout_height="wrap_content" android:numeric="integer" android:text="" /> <TextView android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="体重(kg)" /> <EditText android:id="@+id/weight" android:layout_width="fill_parent" android:layout_height="wrap_content" android:numeric="integer" android:text="” <Button android:id ="@+id/commit" android:layout_width="fill_parent" android:layout_height="wrap_content" android:drawableBottom ="#bbbf" android:text="提交" /> /> <TextView android:id="@+id/result" android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="" /> <TextView android:id="@+id/suggest" android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="" /> </LinearLayout>
3.string
<?xml version="1.0" encoding="utf-8"?> <resources> <string name="hello">Hello World, BMIActivity!</string> <string name="app_name">Activity之间的通信</string> <string name="advice_heavy">你该节食了</string> <string name="advice_light">你该多吃点</string> <string name="advice_average">体型很棒哦</string> <string name="return_lable">返回</string> </resources>
正在阅读:
智能移动终端软件开发实验报告05-24
思想道德修养与法律基础在线全套作业附答案11-27
湖南衡阳松木工业园区循环化改造示范试点实施方案 - 图文04-27
新视野大学英语读写译(第三版)第二册课后习题答案412-08
液化天然气安全告知牌06-05
中国地质大学北京 地球科学概论 考研资料08-29
钢的加热转变08-09
人教版八年级政治下册导学案(全册)02-20
- 教学能力大赛决赛获奖-教学实施报告-(完整图文版)
- 互联网+数据中心行业分析报告
- 2017上海杨浦区高三一模数学试题及答案
- 招商部差旅接待管理制度(4-25)
- 学生游玩安全注意事项
- 学生信息管理系统(文档模板供参考)
- 叉车门架有限元分析及系统设计
- 2014帮助残疾人志愿者服务情况记录
- 叶绿体中色素的提取和分离实验
- 中国食物成分表2020年最新权威完整改进版
- 推动国土资源领域生态文明建设
- 给水管道冲洗和消毒记录
- 计算机软件专业自我评价
- 高中数学必修1-5知识点归纳
- 2018-2022年中国第五代移动通信技术(5G)产业深度分析及发展前景研究报告发展趋势(目录)
- 生产车间巡查制度
- 2018版中国光热发电行业深度研究报告目录
- (通用)2019年中考数学总复习 第一章 第四节 数的开方与二次根式课件
- 2017_2018学年高中语文第二单元第4课说数课件粤教版
- 上市新药Lumateperone(卢美哌隆)合成检索总结报告
- 终端
- 软件开发
- 实验
- 移动
- 智能
- 报告
- 买易通网站详细设计文档(关于网站的详细设计部分)
- 中国传统文化知识竞赛题库
- 混凝土搅拌站试验员培训教材
- Baryon production in ALEPH
- 七方责任主体终身责任制承诺书
- 【2014年最新】办公自动化(第2版)-在线作业_D最终成绩:100.0
- 钢制压力容器制造中的焊接质量控制
- 中学教师潜能激励方法探究
- 孝感市汉川市九年级上学期期末物理试卷
- PEP小学英语五年级上册连词成句
- 学习卢玉宝先进事迹材料-冯志军
- 材料科学与工程专业学生职业生涯规划设计(51页字数19000)
- 遗传与变异之间不为人知的奥秘
- 15一个中国孩子的呼声教学设计
- 基于全生命周期的项目管理在汽车研发中的应用研究
- 人事部三级笔译(CATTI)2008.5英译汉真题
- 干部下基层,心得体会
- 心理学第三章习题集
- 对手术室骨科植入性医疗器械管理的实践与效果
- 公务员面试备考技巧:应避免四大误区