位置: 编程技术 - 正文

android计算器(Android计算器项目代码)

编辑:rootadmin

推荐整理分享android计算器(Android计算器项目代码),希望有所帮助,仅作参考,欢迎阅读内容。

文章相关热门搜索词:Android计算器代码,Android计算器代码用输入框,Android计算器代码用输入框,android计算器实现实验总结,Android计算器布局,android计算器实现实验总结,Android计算器代码,Android计算器代码,内容如对您有帮助,希望把文章链接给更多的朋友!

主类:

package com.bn.es2b;//包名import android.app.Activity; import android.os.Bundle;import android.view.View;import android.widget.Button;import android.widget.TextView;import android.view.View.OnClickListener;public class Sample2_2_Activity extends Activity {TextView tv;int[] buttons;//数字按钮数组int result;int result0;int result1;Button buttonC;//按钮对象声明Button buttonJia;Button buttonJian;Button buttonCheng;Button buttonChu;Button buttonDengyu;String str1; //旧输入的&#;String str2; //新输入的&#;int flag=0; //计算标志位,0第一次输入;1加;2减;3乘;4除;5等于Button temp;@Overridepublic void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); //跳转到main界面 initButton(); //清空按钮的点击事件监听器 buttonC.setOnClickListener ( new OnClickListener() { public void onClick(View v) {str1="";str2=""; //清空记录tv.setText(str1);flag=0;}} ); //监听 for(int i=0;i<buttons.length;i&#;&#;) { temp=(Button)findViewById(buttons[i]); temp.setOnClickListener ( //为Button添加监听器 new OnClickListener() { public void onClick(View v) { //此处为计算器的关键代码

// 当第一次按下按钮时,str1="";之后再累加数字,之前一直没有弄懂的,现在知道了

android计算器(Android计算器项目代码)

str1=tv.getText().toString().trim(); str1=str1&#;String.valueOf(((Button)v).getText());//获得新输入的&#; 参数v此时是按钮,所以需要强制转换; System.out.println("str1"&#;":::"&#;str1); tv.setText(str1);} } ); } buttonListener(buttonJia,1); buttonListener(buttonJian,2); buttonListener(buttonCheng,3); buttonListener(buttonChu,4); buttonDengyu.setOnClickListener ( new OnClickListener() { public void onClick(View v) {System.out.println(str1); result1=Integer.parseInt(str1); if(flag==1) { result=result0&#;result1; System.out.println(result0&#;":"&#;result1); } else if(flag==2) { result=result0-result1; } else if(flag==3) { result=result0*result1; } else if(flag==4) { result=(int)(result0/result1); } String str=(result&#;"").trim(); System.out.println(str); tv.setText(str); } } ); }//初始化按钮 public void initButton() { //初始化控件资源 tv=(TextView)this.findViewById(R.id.tv);//获取文本框控件对象 str1=String.valueOf(tv.getText());str2=""; //初始化运算输入数&#; buttonC=(Button)this.findViewById(R.id.ButtonC);//获得计算按钮的按钮对象 buttonJia=(Button)this.findViewById(R.id.ButtonJia); buttonJian=(Button)this.findViewById(R.id.ButtonJian); buttonCheng=(Button)this.findViewById(R.id.ButtonCheng); buttonChu=(Button)this.findViewById(R.id.ButtonChu); buttonDengyu=(Button)this.findViewById(R.id.ButtonDengyu); buttons=new int[] { //记录数&#;按钮的id R.id.Button,R.id.Button,R.id.Button,R.id.Button,R.id.Button, R.id.Button,R.id.Button,R.id.Button,R.id.Button,R.id.Button }; } //按钮监听 public void buttonListener(Button button,final int id) { button.setOnClickListener ( new OnClickListener() { public void onClick(View v) { String str=tv.getText().toString().trim(); result0=Integer.parseInt(str); tv.setText(""); flag=id; } } ); }}

布局文件:

<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android=" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent" android:paddingTop="5dip"> <TextView android:id="@&#;id/tv" android:layout_width="fill_parent" android:layout_height="dip" android:layout_marginRight="5dip"android:layout_marginLeft="5dip" android:background="#FFFFFF" android:gravity="center_vertical|right" android:textSize="dip" android:textColor="#ff"> </TextView> <LinearLayout android:orientation="horizontal" android:layout_width="fill_parent" android:layout_height="wrap_content" android:paddingTop="5dip"> <Button android:text="7" android:textSize="dip" android:id="@&#;id/Button" android:layout_width="dip" android:layout_height="wrap_content"/> <Button android:text="8" android:textSize="dip" android:id="@&#;id/Button" android:layout_width="dip" android:layout_height="wrap_content"/> <Button android:text="9" android:textSize="dip" android:id="@&#;id/Button" android:layout_width="dip" android:layout_height="wrap_content"/> <Button android:text="&#;" android:textSize="dip" android:id="@&#;id/ButtonJia" android:layout_width="dip" android:layout_height="wrap_content"/> </LinearLayout> <LinearLayout android:orientation="horizontal" android:layout_width="fill_parent" android:layout_height="wrap_content" android:paddingTop="5dip"> <Button android:text="4" android:textSize="dip" android:id="@&#;id/Button" android:layout_width="dip" android:layout_height="wrap_content"/> <Button android:text="5" android:textSize="dip" android:id="@&#;id/Button" android:layout_width="dip" android:layout_height="wrap_content"/> <Button android:text="6" android:textSize="dip" android:id="@&#;id/Button" android:layout_width="dip" android:layout_height="wrap_content"/> <Button android:text="-" android:textSize="dip" android:id="@&#;id/ButtonJian" android:layout_width="dip" android:layout_height="wrap_content"/> </LinearLayout> <LinearLayout android:orientation="horizontal" android:layout_width="fill_parent" android:layout_height="wrap_content" android:paddingTop="5dip"> <Button android:text="1" android:textSize="dip" android:id="@&#;id/Button" android:layout_width="dip" android:layout_height="wrap_content"/> <Button android:text="2" android:textSize="dip" android:id="@&#;id/Button" android:layout_width="dip" android:layout_height="wrap_content"/> <Button android:text="3" android:textSize="dip" android:id="@&#;id/Button" android:layout_width="dip" android:layout_height="wrap_content"/> <Button android:text="*" android:textSize="dip" android:id="@&#;id/ButtonCheng" android:layout_width="dip" android:layout_height="wrap_content"/> </LinearLayout> <LinearLayout android:orientation="horizontal" android:layout_width="fill_parent" android:layout_height="wrap_content" android:paddingTop="5dip"> <Button android:text="0" android:textSize="dip" android:id="@&#;id/Button" android:layout_width="dip" android:layout_height="wrap_content"/> <Button android:text="c" android:textSize="dip" android:id="@&#;id/ButtonC" android:layout_width="dip" android:layout_height="wrap_content"/> <Button android:text="=" android:textSize="dip" android:id="@&#;id/ButtonDengyu" android:layout_width="dip" android:layout_height="wrap_content"/> <Button android:text="/" android:textSize="dip" android:id="@&#;id/ButtonChu" android:layout_width="dip" android:layout_height="wrap_content"/> </LinearLayout></LinearLayout>

我是如何从0开始,在天里完成一款Android游戏开发的 – Part3 – 第6至第8天 第6天:第一批外星人和屏幕方向好了,现在有了一些复古风的外星人它们正在到处飞。抱歉,暂时还没有demo。这款Andriod游戏目前只有.apk式的安装包。

我是如何从0开始,在天里完成一款Android游戏开发的 – Part4 – 第9至第天 第9天这是一款第一人称视角射击游戏,但它绝不老套在与人们谈论起这款游戏的时候,为它定义一个明确的分类确实很难。虽然可以将它看作一款传统

我是如何从0开始,在天里完成一款Android游戏开发的 – Part5– 第至第天 第天(第一部分):新游戏名DRONEINVADER名字终于选好了。备选名字有很多,但只有6、7个是可用的。这一个看起来最符合游戏的主题。全新的主题也做

标签: Android计算器项目代码

本文链接地址:https://www.jiuchutong.com/biancheng/371194.html 转载请保留说明!

上一篇:我是如何从0开始,在23天里完成一款Android游戏开发的 – Part 2 – 第3至第5天(如何从0开始赚钱)

下一篇:我是如何从0开始,在23天里完成一款Android游戏开发的 – Part3 – 第6至第8天(从0开始)

  • 房地产预缴增值税计算方式
  • 增值税额的计算公式写销售额除以1.13*0.13对吗
  • 如何做好存货管理,从哪方面去做
  • 金税盘维护费全额抵扣吗
  • 保函费用是用来干什么的
  • 个体户城建税优惠政策
  • 收到红字信息表不能直接开具
  • 2019年小规模纳税人增值税优惠
  • 进项税加计抵减生产性服务
  • 当月没有发生购销合同还要报印花税吗
  • 房地产开发企业会计科目
  • 期末留抵税额可以留多久
  • 员工内部跑步活动费用怎么做分录?
  • 收取加盟费会计如何入账
  • 工业总产值填报原则
  • 从个人出开进的房租租赁发票可以抵扣几个点?
  • 增值税减免明细表怎么填
  • 帮其他企业推广产品
  • 汽车装饰装潢税率
  • 以旧换新要按商品价格吗
  • 2020年职工福利费扣除比例
  • 每个月工资都不一样,怎么计算个税
  • 购物车内广告收入应该怎么缴税?
  • 连续3个月增值税留抵
  • 最新定额是哪年
  • 物业公司营改增后收入的确认
  • 所得税季度申报营业收入填什么
  • 土地出让金怎么入账
  • 土地出让金产生的利息交契税吗
  • 工程施工科目核算
  • 主营业务收入会计英语
  • 文化事业税收优惠政策
  • 小规模纳税人如何申报增值税
  • 应收票据冲转是什么科目
  • 隐藏分区怎么打开
  • 怎样清理ie
  • qtaet2s.exe - qtaet2s是什么进程 有什么用
  • php处理xml
  • win10远程桌面连接不成功
  • PHP:curl_multi_setopt()的用法_cURL函数
  • PHP:pg_field_type()的用法_PostgreSQL函数
  • 加利福尼亚riverside
  • php变量格式说法错误的是
  • 代理记账费用计入什么会计科目
  • 外出经营范围
  • vue-admin-master
  • wordpress创建
  • 详解php实现页面跳转
  • nvm for window
  • webpack devserver contentbase
  • mobilenet模型
  • 低调低调
  • php原生导出excel表单元格格式
  • php弹出登录框
  • python极客项目编程 豆瓣
  • 公益性怎么解释
  • Python中的关键字
  • mysql 的load data infile
  • 小规模纳税人每月不超过10万
  • 债券到期收益率被定义为使债券的()
  • 企业期末预收账款怎么算
  • 利得和损失计入所有者权益的情况
  • 发票信息不一致是怎么回事
  • 进口向海关缴纳消费税
  • 哪些行业不能开电子发票
  • 坏账准备转回是什么意思
  • centos怎么设置
  • linux rpm包安装
  • 升级win10怎么激活
  • win8打开cmd的快捷键
  • win10 ie桌面图标
  • 宽带连接找不到设备是怎么回事
  • grid sheet
  • node.js安装模式选择
  • Android之Async-http
  • easyui怎么用
  • 高速公路发票在哪里开
  • 白盘怎么开具红字专用发票
  • 上海自贸区税务大厅地址
  • 江苏省财务官网
  • 免责声明:网站部分图片文字素材来源于网络,如有侵权,请及时告知,我们会第一时间删除,谢谢! 邮箱:opceo@qq.com

    鄂ICP备2023003026号

    网站地图: 企业信息 工商信息 财税知识 网络常识 编程技术

    友情链接: 武汉网站建设