Android Studio实现简单计算器APP

一、简介:用Android Studio 实现一个简单的计算器APP,并在蓝叠模拟器中运行。

该计算器只能实现两位数字的四则运算。

二、代码

activity_main.xml   ---界面设计

<?xml version="1.0" encoding="utf-8"?>
<GridLayout xmlns:android="http://schemas.android.com/apk/res/android"
 xmlns:tools="http://schemas.android.com/tools"
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 android:layout_below="@+id/textView"
 android:layout_alignParentStart="true"
 android:rowCount="6"
 android:columnCount="4"
 > <!--设置网格为6行4列-->
 <!--显示文本组件,占1行4列-->
 <TextView
 android:id="@+id/text"
 android:layout_width="350dp"
 android:layout_height="wrap_content"
 android:layout_columnSpan="4"
 android:layout_marginLeft="4px"
 android:gravity="left"
 android:textSize="50dp" />

 <!--清除按钮,占1行4列-->
 <Button
 android:id="@+id/btnClear"
 android:layout_width="353dp"
 android:layout_height="wrap_content"
 android:layout_columnSpan="4"
 android:text="清除"
 android:textSize="26sp" />

 <!--以下按钮为数字按钮和函数按钮,每个占1行1列-->
 <Button
 android:id="@+id/btn1"
 android:text="1"
 android:textSize="26sp" />
 <Button
 android:id="@+id/btn2"
 android:text="2"
 android:textSize="26sp" />
 <Button
 android:id="@+id/btn3"
 android:text="3"
 android:textSize="26sp" />
 <Button
 android:id="@+id/btnPlus"
 android:text="+"
 android:textSize="26sp" />
 <Button
 android:id="@+id/btn4"
 android:text="4"
 android:textSize="26sp" />
 <Button
 android:id="@+id/btn5"
 android:text="5"
 android:textSize="26sp" />
 <Button
 android:id="@+id/btn6"
 android:text="6"
 android:textSize="26sp" />
 <Button
 android:id="@+id/btnSubtract"
 android:text="-"
 android:textSize="26sp" />
 <Button
 android:id="@+id/btn7"
 android:text="7"
 android:textSize="26sp" />
 <Button
 android:id="@+id/btn8"
 android:text="8"
 android:textSize="26sp" />
 <Button
 android:id="@+id/btn9"
 android:text="9"
 android:textSize="26sp" />
 <Button
 android:id="@+id/btnMultiply"
 android:text="*"
 android:textSize="26sp" />
 <Button
 android:id="@+id/btnPoint"
 android:text="."
 android:textSize="26sp" />
 <Button
 android:id="@+id/btn0"
 android:text="0"
 android:textSize="26sp" />
 <Button
 android:id="@+id/btnSum"
 android:text="="
 android:textSize="26sp" />
 <Button
 android:id="@+id/btnDivide"
 android:text="/"
 android:textSize="26sp" />

</GridLayout>

界面:

MainActivity.java---功能实现

public class MainActivity extends AppCompatActivity implements View.OnClickListener {

 Button btn0,btn1,btn2,btn3,btn4,btn5,btn6,btn7,btn8,btn9,
  btnClear,btnPlus,btnSubtract,btnMultiply,btnDivide,btnSum,btnPoint;
 TextView text;
 String str = "";

 @Override
 protected void onCreate(Bundle savedInstanceState) {
 super.onCreate(savedInstanceState);
 setContentView(R.layout.activity_main);

 btn0 = (Button) findViewById(R.id.btn0);
 btn1 = (Button) findViewById(R.id.btn1);
 btn2 = (Button) findViewById(R.id.btn2);
 btn3 = (Button) findViewById(R.id.btn3);
 btn4 = (Button) findViewById(R.id.btn4);
 btn5 = (Button) findViewById(R.id.btn5);
 btn6 = (Button) findViewById(R.id.btn6);
 btn7 = (Button) findViewById(R.id.btn7);
 btn8 = (Button) findViewById(R.id.btn8);
 btn9 = (Button) findViewById(R.id.btn9);
 btnClear = (Button) findViewById(R.id.btnClear);
 btnPlus = (Button) findViewById(R.id.btnPlus);
 btnSubtract = (Button) findViewById(R.id.btnSubtract);
 btnMultiply = (Button) findViewById(R.id.btnMultiply);
 btnDivide = (Button) findViewById(R.id.btnDivide);
 btnPoint = (Button) findViewById(R.id.btnPoint);
 btnSum = (Button) findViewById(R.id.btnSum);

 text = (TextView) findViewById(R.id.text) ;

 btn0.setOnClickListener(this);
 btn1.setOnClickListener(this);
 btn2.setOnClickListener(this);
 btn3.setOnClickListener(this);
 btn4.setOnClickListener(this);
 btn5.setOnClickListener(this);
 btn6.setOnClickListener(this);
 btn7.setOnClickListener(this);
 btn8.setOnClickListener(this);
 btn9.setOnClickListener(this);
 btnClear.setOnClickListener(this);
 btnPlus.setOnClickListener(this);
 btnSubtract.setOnClickListener(this);
 btnMultiply.setOnClickListener(this);
 btnDivide.setOnClickListener(this);
 btnPoint.setOnClickListener(this);
 btnSum.setOnClickListener(new click());
 //给所有按钮注册点击事件
 }

 @Override
 public void onClick(View v) {
 String input=text.getText().toString();
 switch (v.getId()){
  case R.id.btn0:
  case R.id.btn1:
  case R.id.btn2:
  case R.id.btn3:
  case R.id.btn4:
  case R.id.btn5:
  case R.id.btn6:
  case R.id.btn7:
  case R.id.btn8:
  case R.id.btn9:
  case R.id.btnPoint:

  text.setText(input+((Button)v).getText());
  break;

  case R.id.btnPlus:
  case R.id.btnSubtract:
  case R.id.btnMultiply:
  case R.id.btnDivide:

  text.setText(input + " " + ((Button)v).getText() + " "); //给运算符前后加空格,好判断
  break;

  case R.id.btnClear:
  text.setText("");
  break;
 }
 }
 class click implements View.OnClickListener {
 public void onClick (View v) {
  getResult();
 }
 }

 private void getResult () {
 String str1 = text.getText().toString();
 if(str1 == null || str1.equals("")){
  return;
 }
 if(!str1.contains(" ")){
  return ;
 }

 double result = 0;
// 第一个数的字符串
 String s1 = str1.substring(0,str1.indexOf(" "));
// 运算符
 String op = str1.substring(str1.indexOf(" ")+1,str1.indexOf(" ")+2);
// 第二个数的字符串
 String s2 = str1.substring(str1.indexOf(" ")+3);

  double d1 = Double.parseDouble(s1);//将数字字符串转为double类型
  double d2 = Double.parseDouble(s2);
  if (op.equals("+")) { //加法运算
  result = d1 + d2;
  } else if (op.equals("-")) { //减法运算
  result = d1 - d2;
  } else if (op.equals("*")) { //乘法运算
  result = d1 * d2;
  } else if (op.equals("/")) { //除法运算
  if (d2 == 0) { //如果被除数是0
   result = 0; //则结果是0
  }
  else {
   result = d1 / d2;
  }
  }

  text.setText(str1 + " = " + result); //显示计算结果

  if (!s1.contains(".") && !s2.contains(".") && !op.equals("/")) {//如果两个整数且不是出发运算
  int r = (int) result; //则结果转为整数
  text.setText(str1 + " = " + r );
  }

 }

}

三、运行测试

测试结果:

1.可以计算简单两位数的四则运算,但是如果计算超过2位数的运算,则会出现异常使程序退出。

2.四则运算中,结果可以为负数,但是运算数若为负数,则会出现异常,原因是该程序公式为【数字1 + 运算符 +数字二】,若输入负数,即多出一位运算符,则会抛出异常。

四、总结

总的来说,这个计算器确实十分简单,功能也不完善,还有很多小bug,但是对于刚入门的菜鸟来说,也用了不少的时间。希望自己能更加努力地坚持学习下去!

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

(0)

相关推荐

  • Android studio设计简易计算器

    本文实例为大家分享了Android studio设计简易计算器的具体代码,供大家参考,具体内容如下 效果显示: 第一步,简单的界面布局 <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.and

  • Android开发实现的简单计算器功能【附完整demo源码下载】

    本文实例讲述了Android开发实现的简单计算器功能.分享给大家供大家参考,具体如下: 这个Android计算器虽然还有点小bug,不过简单的计算功能还是没问题的哦: 先上图看效果 比较简单,所以我就没怎么写注释,应该一看就能明白的 有不明白的可以发信问我 先贴MainActivity.java代码 package com.example.calculator; import android.app.Activity; import android.os.Bundle; import andro

  • Android实现加法计算器

    本文实例为大家分享了Android实现加法计算器的具体代码,供大家参考,具体内容如下 布局 <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layo

  • Android studio实现简单计算器

    本文实例为大家分享了Android studio实现简单计算器的具体代码,供大家参考,具体内容如下 需求分析 在Android studio中设计并实现一个简单的计算器,实现连续的加减乘除运算. 界面设计 采用网格GridLayout布局,设计了一个6行4列的网格,最上边是一个EditText用来显示用户输入的运算数字和运算符,以及相关的运算结果,其占4列,文本框大小为50dip:依次往下的界面分别设置了数字和运算符以及操作的按钮,各行各列的每个按钮的大小均设为26sp. 编程分析 设计了两个文

  • android实现简单计算器功能

    本文实例为大家分享了android实现简单计算器的具体代码,供大家参考,具体内容如下 // 日期:2014/9/26 // 首先,人们的输入习惯为中缀表达式.为了便于计算,程序会将中缀表达式会转换为后缀表达式 //////////////////////////////////////////////////////////////////////////////////////// // 目前软件还存在 // 1.输入运算数和运算符不匹配时,崩溃的现象.(如:只输入一个操作数) // 2.一个

  • Android实现简易计算器小程序

    本文实例为大家分享了Android实现简易计算器小程序的具体代码,供大家参考,具体内容如下 目标效果: 通过编写代码,可以实现整数和小数的加减乘除运算,以及删除和清空的功能. 1.页面中Button使用的是线性布局,最外边一个是父布局,第一行C,DEL,/,*为第一个子布局,第二行7,8,9,-为第二个子布局,第三行4,5,6,+为第三个子布局,第四五行为第四个子布局,第四个子布局中还有两个相当于是孙布局的级别,1,2,3为第一个孙布局,0和.为第二个孙布局,=在两个孙布局之外第四个子布局以内.

  • Android实现简单加法计算器

    本文实例为大家分享了Android实现简单加法计算器的具体代码,供大家参考,具体内容如下 package com.example.calculator; import android.os.Bundle; import android.app.Activity; import android.view.Menu; import android.view.View; import android.widget.Button; import android.widget.EditText; impo

  • android计算器实现两位数的加减乘除

    本文实例为大家分享了android计算器实现加减乘除的具体代码,供大家参考,具体内容如下 注:以下计算器只注重实现功能,不考虑其他BUG,只有两位整数的算法运算,适合新手 1.实现思想 将从键盘得到的数值放在一个字符数组中,以运算符号(+-/)为分割点,将两个数值分割开,进行算法运算.* 2.难点 如何判断是否为符号?+ - ×/ 记录符号的位置? 3.步骤: 1.得到键盘输入的值 2.将值存放在一个字符数组中 3.遍历数组中的每个数,如果找到算法符号,记录下算法符号的位置.(要点,从0开始)

  • 从零开始学android实现计算器功能示例分享(计算器源码)

    下面是效果展示: 复制代码 代码如下: <?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"    android:layout_width="match_parent"    android:layout_height="match

  • android计算器简单实现代码

    本文实例为大家分享了android计算器的具体实现代码,供大家参考,具体内容如下 java代码: package com.itheima74.simplecalculator4; import android.os.Bundle; import android.support.v7.app.AppCompatActivity; import android.view.Menu; import android.view.MenuItem; import android.view.View; imp

随机推荐