1、 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 运行界面截
2、图21 3.3运行结果截图22 3.4 总结22 第一章 系统分析与设计 1.1系统的可行性分析 可行性研究是为了弄清楚系统开发的项目是不是可以实现和值得进行研究的过程,实际上是一次大大简化系统分析和系统设计的过程,所以,进行可执行性的分析是非常必要的,也是很重要的,经过最初的设计目标和进行的实时调查得出以下四点的可行性分析: (1)技术可行性:Eclipse + Android ADT的技术已经较为成熟,通过SUN公司(现被ORCEL公司收购)推出的跨平台、动态的JAVA语言进行开发。 (2)运行可行性:该系统需要Android虚拟机环境,Eclipse中安
3、装ADT,DDMS等Google Android相关插件。其运行环境已经相当稳定,它功能丰富,包括了完备的Android程序的编码、调试、测试和发布功能,其中支持所有Android应用开发相关技术,包括SQLite,Skia,3D制作,Android XML,能够很好的发布Android的应用程序APK包。 (3)法律可行性:因为是自主开发设计,所以不会构成侵权,在法律上是可行的。 通过以上的可行性分析,将采用Eclipse+Android ADT + DDMS技术,运用JAVA语言进行系统的开发。 1.2 系统的需求分析 根据分析需求,这个系统必须实现以下的功能: (1) 实现简单
4、的数字计算功能。 作为计算器,其核心就是加减乘除。 (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
5、android.widget.TextView; publicclass 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 = nul
6、l; 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
7、 private Button buttonbai = null; private Button buttongen = null; private Button buttonequal = null; private String x=""; private String y=""; privatedoubler1=0; privatedoubler2=0; privateinti=0; Override protectedvoid onCreate(Bundle savedInstanceState) { super.onCreate(savedInstance
8、State); setContentView(R.layout.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
9、 = (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)fi
10、ndViewById(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); buttonequal = (B
11、utton)findViewById(R.id.buttonequal); buttonpint = (Button)findViewById(R.id.buttonpoint); button1.setOnClickListener(new OnClickListener() { Override publicvoid onClick(View arg0) { // TODO Auto-generated method stub x=x+"1"; y=y+"1"; textView1.setText(y); } }); button2.setOnCli
12、ckListener(new OnClickListener() { Override publicvoid onClick(View arg0) { // TODO Auto-generated method stub x=x+"2"; y=y+"2"; textView1.setText(y); } }); button3.setOnClickListener(new OnClickListener() { Override publicvoid onClick(View arg0) { // TODO Auto-generated method
13、stub x=x+"3"; y=y+"3"; textView1.setText(y); } }); button4.setOnClickListener(new OnClickListener() { Override publicvoid onClick(View arg0) { // TODO Auto-generated method stub x=x+"4"; y=y+"4"; textView1.setText(y); } }); button5.setOnClickListener(new OnClickListener()
14、{ Override publicvoid onClick(View arg0) { // TODO Auto-generated method stub x=x+"5"; y=y+"5"; textView1.setText(y); } }); button6.setOnClickListener(new OnClickListener() { Override publicvoid onClick(View arg0) { // TODO Auto-generated method stub x=x+"6"; y=y+"6"; textVie
15、w1.setText(y); } }); button7.setOnClickListener(new OnClickListener() { Override publicvoid onClick(View arg0) { // TODO Auto-generated method stub x=x+"7"; y=y+"7"; textView1.setText(y); } }); button8.setOnClickListener(new OnClickListener() { Override publicvoid onClick
16、View arg0) { // TODO Auto-generated method stub x=x+"8"; y=y+"8"; textView1.setText(y); } }); button9.setOnClickListener(new OnClickListener() { Override publicvoid onClick(View arg0) { // TODO Auto-generated method stub x=x+"9"; y=y+"9"; textView1.setText(y); } }); bu
17、ttonzone.setOnClickListener(new OnClickListener() { Override publicvoid onClick(View arg0) { // TODO Auto-generated method stub x=x+"0"; y=y+"0"; textView1.setText(y); } }); buttonpint.setOnClickListener(new OnClickListener() { Override publicvoid onClick(View arg0) { // TODO Au
18、to-generated method stub if(x==""){ x=0+"."+""; y=0+"."+""; } else { x=x+"."; y=y+"."; textView1.setText(y); } } }); buttonequal.setOnClickListener(new OnClickListener() { Override publicvoid onClick(View arg0) { // TODO Auto-generated method stub if(x!=""){ r2=Double
19、parseDouble(x); x=""; switch(i){ case 0: textView1.setText(0+""); break; case 1: textView1.setText((r1+r2)+""); break; case 2: textView1.setText((r1-r2)+""); break; case 3: textView1.setText((r1*r2)+""); break; case 4: textView1.setText((r1/r2)+""); break; case 5: textView1.setTe
20、xt((r1%r2)+""); break; } } else{ textView1.setText(0+""); x=""; y=""; } r1=0; r2=0; i=0; x=""; y=""; } }); buttonadd.setOnClickListener(new OnClickListener() { Override publicvoid onClick(View arg0) { // TODO Auto-generated method stub if(x!=""){ r1=Double.
21、parseDouble(x); x=""; y=y+"+"; textView1.setText(y); i=1; } else { textView1.setText(0+""); } } }); buttonred.setOnClickListener(new OnClickListener() { Override publicvoid onClick(View arg0) { // TODO Auto-generated method stub if(x!=""){ r1=Double.parseDouble(x);
22、x=""; y=y+"-"; textView1.setText(y); i=2; } else { textView1.setText(0+""); } } }); buttonmul.setOnClickListener(new OnClickListener() { Override publicvoid onClick(View arg0) { // TODO Auto-generated method stub if(x!=""){ r1=Double.parseDouble(x); x=""; y=y+"*";
23、textView1.setText(y); i=3; } else { textView1.setText(0+""); } } }); buttondiv.setOnClickListener(new OnClickListener() { Override publicvoid onClick(View arg0) { // TODO Auto-generated method stub if(x!=""){ r1=Double.parseDouble(x); x=""; y=y+"/"; textView1.setTe
24、xt(y); i=4; } else { textView1.setText(0+""); } } }); buttonbai.setOnClickListener(new OnClickListener() { Override publicvoid onClick(View arg0) { // TODO Auto-generated method stub if(x!=""){ r1=Double.parseDouble(x); x=""; y=y+"%"; textView1.setText(y); i=5;
25、 } else { textView1.setText(0+""); } } }); buttongen.setOnClickListener(new OnClickListener() { Override publicvoid onClick(View arg0) { // TODO Auto-generated method stub if(x!=""){ y="1/"+x; textView1.setText(y); r1=1/(Double.parseDouble(x)); x=r1+""; } else { tex
26、tView1.setText(0+"");
}
}
});
}
Override
publicboolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
returntrue;
}
}
2.2 xml文件的详细设计
27、s.android./apk/res/android"
xmlns:tools="schemas.android./tools"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:layout_gravity="center"
android:columnCount="5"
android:rowCount="5"
tools:context=".MainActivity">
28、
android:id="+id/textView1"
android:layout_width="230dp"
android:layout_height="30dp"
android:layout_column="0"
android:layout_columnSpan="5"
android:layout_row="0"
android:gravity="right"
android:text="string/result"
android:textSize="25sp"/>
©2010-2025 宁波自信网络信息技术有限公司 版权所有
客服电话:4009-655-100 投诉/维权电话:18658249818