Android实战教程第一篇之最简单的计算器

Android实战教程第一篇之最简单的计算器,第1张

概述从今天开始,本专栏持续更新Android简易实战类博客文章。和以往专栏不同,此专栏只有实例。每个实例尽量按照知识点对应相应一章节的内容去写,循序渐进。有些实例可能会与另一个专栏有重复的文章。

从今天开始,本专栏持续更新AndroID简易实战类博客文章。和以往专栏不同,此专栏只有实例。每个实例尽量按照知识点对应相应一章节的内容去写,循序渐进。有些实例可能会与另一个专栏有重复的文章。

开始本专栏的第一个简易案例:

首先设置两个布局文件,一个布局文件进行输入数据,获取加法运算;另一个布局文件进行显示最终结果。Activity1启动Activity2,并传递计算结果值给Activity2.

main.xml:

<?xml version="1.0" enCoding="utf-8"?> <linearLayout xmlns:androID="http://schemas.androID.com/apk/res/androID"   androID:orIEntation="vertical"   androID:layout_wIDth="fill_parent"   androID:layout_height="fill_parent"   > <EditText    androID:ID="@+ID/factorOne"   androID:layout_wIDth="fill_parent"    androID:layout_height="wrap_content"    /> <TextVIEw    androID:ID="@+ID/symbol"   androID:layout_wIDth="fill_parent"    androID:layout_height="wrap_content"    /> <EditText    androID:ID="@+ID/factorTwo"   androID:layout_wIDth="fill_parent"    androID:layout_height="wrap_content"    /> <button   androID:ID="@+ID/calculate"   androID:layout_wIDth="fill_parent"    androID:layout_height="wrap_content"    /> </linearLayout> 

页面展示:

result.xml

activity03活动:

package mars.activity03;  import androID.app.Activity; import androID.content.Intent; import androID.os.Bundle; import androID.vIEw.Menu; import androID.vIEw.MenuItem; import androID.vIEw.VIEw; import androID.vIEw.VIEw.OnClickListener; import androID.Widget.button; import androID.Widget.EditText; import androID.Widget.TextVIEw; //1.在Activity03当中,要声明四个控件 //2.要为其中的两个控件设置显示的值 //3.创建一个监听器类,监听按钮按下的动作 //4.将监听器类的对象,绑定在按钮对象上 public class Activity03 extends Activity {  /** Called when the activity is first created. */  private EditText factorOne ;  private EditText factorTwo;  private TextVIEw symbol;  private button calculate;  @OverrIDe  public voID onCreate(Bundle savedInstanceState) {   super.onCreate(savedInstanceState);   setContentVIEw(R.layout.main);   //根据控件的ID来取得代表控件的对象   factorOne = (EditText)findVIEwByID(R.ID.factorOne);   factorTwo = (EditText)findVIEwByID(R.ID.factorTwo);   symbol = (TextVIEw)findVIEwByID(R.ID.symbol);   calculate = (button)findVIEwByID(R.ID.calculate);   //为symbol和calculate设置显示的值 //  symbol.setText("乘以"); //  calculate.setText("计算");   symbol.setText(R.string.symbol);//这里通过引用的方式,去String文件中引用。保证了业务逻辑、视图、引用资源分开   calculate.setText(R.string.calculate);   //将监听器的对象绑定到按钮对象上面   calculate.setonClickListener(new CalculateListener());  }  //当客户点击MENU按钮的时候,调用该方法  @OverrIDe  public boolean onCreateOptionsMenu(Menu menu) {   menu.add(0,1,R.string.exit);   menu.add(0,2,R.string.about);   return super.onCreateOptionsMenu(menu);  }  //当客户点击菜单当中的某一个选项时,会调用该方法  @OverrIDe  public boolean onoptionsItemSelected(MenuItem item) {   if(item.getItemID() == 1){    finish();   }   return super.onoptionsItemSelected(item);  }  class CalculateListener implements OnClickListener{    @OverrIDe   public voID onClick(VIEw v) {    //取得两个EditText控件的值    String factorOnestr = factorOne.getText().toString();    String factorTwoStr = factorTwo.getText().toString();    //将这两个值存放到Intent对象当中    Intent intent = new Intent();    intent.putExtra("one",factorOnestr);    intent.putExtra("two",factorTwoStr);    intent.setClass(Activity03.this,ResultActivity.class);    //使用这个Intent对象来启动ResultActivity    Activity03.this.startActivity(intent);   }  } } 

resultActivity:

package mars.activity03;  import androID.app.Activity; import androID.content.Intent; import androID.os.Bundle; import androID.Widget.TextVIEw; //1.接受从Activity03当中所传递的值 //2.计算两个值的积 //3.将计算的结果显示在Activity上 public class ResultActivity extends Activity{  private TextVIEw resultVIEw;  @OverrIDe  protected voID onCreate(Bundle savedInstanceState) {   // Todo auto-generated method stub   super.onCreate(savedInstanceState);   setContentVIEw(R.layout.result);   resultVIEw = (TextVIEw)findVIEwByID(R.ID.result);   //得到Intent对象当中的值   Intent intent = getIntent();   String factorOnestr = intent.getStringExtra("one");   String factorTwoStr = intent.getStringExtra("two");   int factorOneInt = Integer.parseInt(factorOnestr);   int factorTwoInt = Integer.parseInt(factorTwoStr);   //计算两个值的积   int result = factorOneInt * factorTwoInt;   resultVIEw.setText(result + "");  }  } 

String.xml:

<?xml version="1.0" enCoding="utf-8"?> <resources>  <string name="hello">Hello World,Activity03!</string>  <string name="app_name">activity03</string>  <string name="resultLabel">result</string>  <string name="symbol">乘以</string>  <string name="calculate">计算</string>  <string name="exit">退出</string>  <string name="about">关于</string> </resources> 

最后再看一下配置文件:活动都要进行注册,并且设置Activity03为主活动

<?xml version="1.0" enCoding="utf-8"?> <manifest xmlns:androID="http://schemas.androID.com/apk/res/androID"   package="mars.activity03"   androID:versionCode="1"   androID:versionname="1.0">  <application androID:icon="@drawable/icon" androID:label="@string/app_name">   <activity androID:name=".Activity03"      androID:label="@string/app_name">    <intent-filter>     <action androID:name="androID.intent.action.MAIN" />     <category androID:name="androID.intent.category.LAUNCHER" />    </intent-filter>   </activity>   <activity androID:name=".ResultActivity" androID:label="@string/resultLabel"/><!--这里使ResultActivity标题栏显示result-->  </application>  <uses-sdk androID:minSdkVersion="4" />  </manifest> 

 结果:

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持编程小技巧。

总结

以上是内存溢出为你收集整理的Android实战教程第一篇之最简单的计算器全部内容,希望文章能够帮你解决Android实战教程第一篇之最简单的计算器所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1147776.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-31
下一篇 2022-05-31

发表评论

登录后才能评论

评论列表(0条)

保存