android开发计算器课程设计
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
Android应用程序开发
实验报告
学号:131006105
学生: 会会
指导教师:齐兵辉
提交时间:2015.11.10
目录
第一章系统分析与设计 (3)
1.1系统的可行性分析 (3)
1.2系统的需求分析 (3)
第二章系统详细设计 (3)
2.1 ACTIVITY的详细设计 (3)
2.2 XML文件的详细设计 (14)
第三章测试运行及总结 (20)
3.1界面截图 (20)
3.2运行界面截图 (21)
3.3运行结果截图 (22)
3.4总结 (22)
第一章系统分析与设计
1.1系统的可行性分析
可行性研究是为了弄清楚系统开发的项目是不是可以实现和值得进行研究的过程,实际上是一次大大简化系统分析和系统设计的过程,所以,进行可执行性的分析是非常必要的,也是很重要的,经过最初的设计目标和进行的实时调查得出以下四点的可行性分析:
(1)技术可行性:Eclipse + Android ADT的技术已经较为成熟,通过SUN 公司(现被ORCEL公司收购)推出的跨平台、动态的JAVA语言进行开发。
(2)运行可行性:该系统需要Android虚拟机环境,Eclipse中安装ADT,DDMS等Google Android相关插件。其运行环境已经相当稳定,它功能丰富,包括了完备的Android程序的编码、调试、测试和发布功能,其中支持所有Android应用开发相关技术,包括SQLite,Skia,3D制作,Android XML,能够很好的发布Android的应用程序APK包。
(3)法律可行性:因为是自主开发设计,所以不会构成侵权,在法律上是可行的。
通过以上的可行性分析,将采用Eclipse+Android ADT + DDMS技术,运用JAVA语言进行系统的开发。
1.2 系统的需求分析
根据分析需求,这个系统必须实现以下的功能:
(1) 实现简单的数字计算功能。
作为计算器,其核心就是加减乘除。
(2) 能够在手机里面以良好的界面。
第二章系统详细设计2.1 activity的详细设计
package .example.counter;
import android.os.Bundle;
import android.app.Activity;
import android.view.Menu;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.TextView;
public class MainActivity extends Activity {
private TextView textView1 = null;
private Button buttonzone = null;
private Button button1 = null; private Button button2 = null; private Button button3 = null; private Button button4 = null; private Button button5 = null; private Button button6 = null; private Button button7 = null; private Button button8 = null; private Button button9 = null; private Button buttonadd = null; private Button buttonred = null; private Button buttondiv = null; private Button buttonmul = null; private Button buttonpint = null; private Button buttonbai = null; private Button buttongen = null; private Button buttonequal = null; private String x="";
private String y="";
private double r1=0;
private double r2=0;
private int i=0;
Override
protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState);
setContentView(yout.activity_main);
textView1 = (TextView)findViewById(R.id.textView1);
button1 = (Button)findViewById(R.id.button1);
button2 = (Button)findViewById(R.id.button2);
button3 = (Button)findViewById(R.id.button3);
button4 = (Button)findViewById(R.id.button4);
button5 = (Button)findViewById(R.id.button5);
button6 = (Button)findViewById(R.id.button6);
button7 = (Button)findViewById(R.id.button7);
button8 = (Button)findViewById(R.id.button8);
button9 = (Button)findViewById(R.id.button9);
buttonzone = (Button)findViewById(R.id.button0);
buttonadd = (Button)findViewById(R.id.buttonadd);
buttonred = (Button)findViewById(R.id.buttonred);
buttonmul = (Button)findViewById(R.id.buttonmul);
buttondiv = (Button)findViewById(R.id.buttondiv);
buttonbai = (Button)findViewById(R.id.buttonbai);
buttongen = (Button)findViewById(R.id.buttongen);