我的编程空间,编程开发者的网络收藏夹
学习永远不晚

Android studio开发实现计算器功能

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

Android studio开发实现计算器功能

Android移动开发实现简单计算器功能,供大家参考,具体内容如下

前言

android 开发小实验
android 移动开发实现 简易计算器功能
小白也能轻松上手,复制粘贴就可使用

使用工具

Android Studio 或者 intellij idea

首先体验一下结果

预览图

源码

前端页面布局

activity_calculator.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
              xmlns:app="http://schemas.android.com/apk/res-auto"
              xmlns:tools="http://schemas.android.com/tools"
              android:layout_width="match_parent"
              android:layout_height="match_parent"
              android:gravity="center"
              android:orientation="vertical"
              android:background="@drawable/bg2"
>   <TextView
        android:layout_width="410dp"
        android:layout_height="60dp"
        android:text="计算器"
        android:textSize="35dp"
        android:gravity="center"
        android:background="#A6EFEF"
        >

    </TextView>
    <TextView
            android:id="@+id/text_show"
            android:layout_width="410dp"
            android:layout_height="80dp"
            android:background="#EAB9B9"
            android:textSize="30dp"
    />

    <EditText
            android:id="@+id/ediText"
            android:layout_width="410dp"
            android:layout_height="70dp"
            android:layout_marginBottom="10dp"
            android:background="#EAB9B9"
            android:editable="false"
            android:gravity="right|center_vertical"
            android:paddingRight="20dp"
            android:hint="请输入数字"
            android:textSize="30sp"
    />


    <GridLayout
            android:layout_width="410dp"
            android:layout_height="400dp"
            android:columnCount="5"
            android:rowCount="6">

        <Button
                android:id="@+id/button6"
                android:layout_width="80dp"
                android:layout_height="wrap_content"
                android:text="←"
                android:background="#87F4F8"
                android:layout_margin="2dp"
                android:textSize="20dp"
        />
        <Button
                android:id="@+id/button7"
                android:layout_width="80dp"
                android:layout_height="wrap_content"
                android:text="CE"
                android:background="#87F4F8"
                android:layout_margin="2dp"
                android:textSize="20dp"
        />

        <Button
                android:id="@+id/button8"
                android:layout_width="80dp"
                android:layout_height="wrap_content"
                android:text="C"
                android:background="#87F4F8"
                android:layout_margin="2dp"
                android:textSize="20dp"
        />

        <Button
                android:id="@+id/button9"
                android:layout_width="80dp"
                android:layout_height="wrap_content"
                android:text="±"
                android:background="#87F4F8"
                android:layout_margin="2dp"
                android:textSize="20dp"
        />

        <Button
                android:id="@+id/button10"
                android:layout_width="80dp"
                android:layout_height="wrap_content"
                android:text="√"
                android:background="#87F4F8"
                android:layout_margin="2dp"
                android:textSize="20dp"
        />

        <Button
                android:id="@+id/nine"
                android:layout_width="80dp"
                android:layout_height="wrap_content"
                android:text="9"
                android:background="#87F4F8"
                android:layout_margin="2dp"
                android:textSize="20dp"


        />

        <Button
                android:id="@+id/eight"
                android:layout_width="80dp"
                android:layout_height="wrap_content"
                android:text="8"
                android:background="#87F4F8"
                android:layout_margin="2dp"
                android:textSize="20dp"
        />

        <Button
                android:id="@+id/seven"
                android:layout_width="80dp"
                android:layout_height="wrap_content"
                android:text="7"
                android:background="#87F4F8"
                android:layout_margin="2dp"
                android:textSize="20dp"
        />
        <Button
                android:id="@+id/divider"
                android:layout_width="80dp"
                android:layout_height="wrap_content"
                android:text="/"
                android:background="#87F4F8"
                android:layout_margin="2dp"
                android:textSize="20dp"
        />

        <Button
                android:id="@+id/button15"
                android:layout_width="80dp"
                android:layout_height="wrap_content"
                android:text="%"
                android:background="#87F4F8"
                android:layout_margin="2dp"
                android:textSize="20dp"
        />

        <Button
                android:id="@+id/four"
                android:layout_width="80dp"
                android:layout_height="wrap_content"
                android:text="4"
                android:background="#87F4F8"
                android:layout_margin="2dp"
                android:textSize="20dp"
        />
        <Button
                android:id="@+id/five"
                android:layout_width="80dp"
                android:layout_height="wrap_content"
                android:text="5"
                android:background="#87F4F8"
                android:layout_margin="2dp"
                android:textSize="20dp"
        />
        <Button
                android:id="@+id/six"
                android:layout_width="80dp"
                android:layout_height="wrap_content"
                android:text="6"
                android:background="#87F4F8"
                android:layout_margin="2dp"
                android:textSize="20dp"
        />
        <Button
                android:id="@+id/multiply"
                android:layout_width="80dp"
                android:layout_height="wrap_content"
                android:text="*"
                android:background="#87F4F8"
                android:layout_margin="2dp"
                android:textSize="20dp"
        />
        <Button
                android:id="@+id/button20"
                android:layout_width="80dp"
                android:layout_height="wrap_content"
                android:text="1/X"
                android:background="#87F4F8"
                android:layout_margin="2dp"
                android:textSize="20dp"
        />

        <Button
                android:id="@+id/one"
                android:layout_width="80dp"
                android:layout_height="wrap_content"
                android:text="1"
                android:background="#87F4F8"
                android:layout_margin="2dp"
                android:textSize="20dp"
        />

        <Button
                android:id="@+id/two"
                android:layout_width="80dp"
                android:layout_height="wrap_content"
                android:text="2"
                android:background="#87F4F8"
                android:layout_margin="2dp"
                android:textSize="20dp"
        />
        <Button
                android:id="@+id/three"
                android:layout_width="80dp"
                android:layout_height="wrap_content"
                android:text="3"
                android:background="#87F4F8"
                android:layout_margin="2dp"
                android:textSize="20dp"
        />

        <Button
                android:id="@+id/minus"
                android:layout_width="80dp"
                android:layout_height="wrap_content"
                android:text="-"
                android:background="#87F4F8"
                android:layout_margin="2dp"
                android:textSize="20dp"
        />
        <Button
                android:id="@+id/equal"
                android:layout_width="80dp"
                android:layout_height="100dp"
                android:layout_rowSpan="2"
                android:text="="
                android:background="#87F4F8"
                android:layout_margin="2dp"
                android:textSize="20dp"
        />
        <Button
                android:id="@+id/zero"
                android:layout_width="160dp"
                android:layout_height="wrap_content"
                android:layout_columnSpan="2"
                android:text="0"
                android:background="#87F4F8"
                android:layout_margin="2dp"
                android:textSize="20dp"
        />

        <Button
                android:id="@+id/point"
                android:layout_width="80dp"
                android:layout_height="wrap_content"
                android:text="."
                android:background="#87F4F8"
                android:layout_margin="2dp"
                android:textSize="20dp"
        />
        <Button
                android:id="@+id/add"
                android:layout_width="80dp"
                android:layout_height="wrap_content"
                android:text="+"
                android:background="#87F4F8"
                android:layout_margin="2dp"
                android:textSize="20dp"
        />
    </GridLayout>
</LinearLayout>

后端源码

CalculatorActivity.java

package com.example.myappch5;
import android.widget.TextView;
import androidx.appcompat.app.AppCompatActivity;
import android.os.Bundle;
import android.app.Activity;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;

public class CalculatorActivity extends Activity implements View.OnClickListener{
    //数字0-9
    Button number_0;
    Button number_1;
    Button number_2;
    Button number_3;
    Button number_4;
    Button number_5;
    Button number_6;
    Button number_7;
    Button number_8;
    Button number_9;

    //运算符
    Button add;         //+
    Button minus;       //-
    Button mul;         //*
    Button divide;      //除
    Button equal;       //=
    Button point;       //小数点

    //清除
    Button det;

    boolean clean;               //清空标识

    EditText editText;           //结果显示集

    TextView text_show;          //显示计算器文本控件

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_calculator);
        //数字0——9实例化
        number_0=findViewById(R.id.zero);
        number_1=findViewById(R.id.one);
        number_2=findViewById(R.id.two);
        number_3=findViewById(R.id.three);
        number_4=findViewById(R.id.four);
        number_5=findViewById(R.id.five);
        number_6=findViewById(R.id.six);
        number_7=findViewById(R.id.seven);
        number_8=findViewById(R.id.eight);
        number_9=findViewById(R.id.nine);

        //运算符实例化
        add=findViewById(R.id.add);        //加
        minus=findViewById(R.id.minus);         //减
        mul=findViewById(R.id.multiply);        //乘
        divide=findViewById(R.id.divider);      //除
        equal=findViewById(R.id.equal);         //等
        point=findViewById(R.id.point);         //小数点
        det=findViewById(R.id.button8);         //清除

        //结果显示集
        text_show = findViewById(R.id.text_show);
        editText=findViewById(R.id.ediText);
//添加事件点击事件
        // 数字点击事件
        number_0.setOnClickListener( this);
        number_1.setOnClickListener(this);
        number_2.setOnClickListener( this);
        number_3.setOnClickListener( this);
        number_4.setOnClickListener(this);
        number_5.setOnClickListener( this);
        number_6.setOnClickListener( this);
        number_7.setOnClickListener(this);
        number_8.setOnClickListener( this);
        number_9.setOnClickListener( this);
        // 符号点击事件
        add.setOnClickListener( this);
        minus.setOnClickListener( this);
        mul.setOnClickListener( this);
        divide.setOnClickListener( this);
        point.setOnClickListener( this);
        equal.setOnClickListener( this);
        det.setOnClickListener( this);
    }

    //读取每个按钮内容
    public void onClick(View view){
        //获取文本内容
        String  input=editText.getText().toString();
        switch (view.getId()){
            case R.id.zero:     // 0
            case R.id.one:      // 1
            case R.id.two:      // 2
            case R.id.three:    // 3
            case R.id.four:     // 4
            case R.id.five:     // 5
            case R.id.six:      // 6
            case R.id.seven:    // 7
            case R.id.eight:    // 8
            case R.id.nine:     // 9
            case R.id.point:    //小数点
                if(clean){
                    clean=false;
                    editText.setText("");   //赋值为空
                }
                editText.setText(input+((Button)view).getText()+"");    //结果集就是本身
                break;
            case R.id.add:
            case R.id.minus:          // 减
            case R.id.multiply:       // 乘
            case R.id.divider:        // 除
                if(clean){
                    clean=false;
                    input="";
                    editText.setText("");
                }
                editText.setText(input+" "+((Button)view).getText()+" ");
                break;
            case R.id.button8:      //清除
                if(clean){
                    clean=false;
                    input="";
                    editText.setText("");
                }else  if(input!=null || !input.equals("")){
                    //如果获取内容为空
                    editText.setText(input.substring(0,input.length() - 1 ));//结果集为空
                    break;
                }
                break;
            case  R.id.equal:   //运算结果=
                getResult();    //调用处理结果方法
                break;
        }
    }
//运算结果方法
    private void getResult(){
        String exp=editText.getText().toString();       //获取文本框内容
        if(exp==null||exp.equals("")){
            return;
        }
        if(!exp.contains("")){
            return;
        }
        if(clean){
            clean=false;
            return;
        }
        clean=true;
        double result=0;
 //进行截取
        // 运算符前的数字
        String s1=exp.substring(0,exp.indexOf(" "));
        //运算符
        String op=exp.substring(exp.indexOf(" ")+1,exp.indexOf(" ")+2);
        //运算符后的数字
        String s2=exp.substring(exp.indexOf(" ")+3);

        if(!s1.equals("")&&!s2.equals("")){
            //如果包含小数点的运算
            double d1=Double.parseDouble(s1);//则数字都是double类型
            double d2=Double.parseDouble(s2);

            if(op.equals("+")){
                // 如果是+
                result=d1+d2;
                text_show.setText(d1+ "+" +d2+"=");
            }else if(op.equals("-")){
                //如果是-
                result=d1-d2;
                text_show.setText(d1+ "-" +d2+"=");
            }else if(op.equals("*")){
                //如果是*
                result=d1*d2;
                text_show.setText(d1+ "*" +d2+"=");
            }else if(op.equals("/")){
                if(d2==0){
                    //如果被除数是0
                    result=0;//则结果为0
                }
                else {
                    //否则执行正常运算
                    result=d1/d2;
                    text_show.setText(d1+ "/" +d2+"=");
                }
            }
            if(!s1.contains(".") &&!s2.contains(".")&&!op.equals("/")){
                //如果是整数类型
                int r=(int)result;//都是整形
                editText.setText(r+"");
            }else {
                editText.setText(result+"");
            }
        }else  if(!s1.equals("")&& s2.equals("")){
            //如果只输入运算符前的数字
            editText.setText(exp);//直接返回当前输入内容
        }else if (s1.equals("")&& !s2.equals("")){
            //如果是只输入运算符后面的数
            double d2 =Double.parseDouble(s2);

            //运算符当前没有输入数字
            if(op.equals("+")){
                result= 0 + d2;
                text_show.setText(d2+"=");
            }else  if(op.equals("-")){
                result= 0 - d2;
                text_show.setText(d2+"=");
            }else if (op.equals("*")){
                result= 0;

            }else  if(op.equals("/")){
                result= 0;
            }
            if(!s1.contains(".")&&!s2.contains(".")){
                int r=(int) result;
                editText.setText(r+"");
            }else {
                editText.setText(result+"");
            }
        }else {
            editText.setText("");
        }
    }
}

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

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

Android studio开发实现计算器功能

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

Android studio开发怎么实现计算器功能

这篇文章主要介绍“Android studio开发怎么实现计算器功能”的相关知识,小编通过实际案例向大家展示操作过程,操作方法简单快捷,实用性强,希望这篇“Android studio开发怎么实现计算器功能”文章能帮助大家解决问题。前言an
2023-06-30

Android Studio实现简单计算器功能

本文实例为大家分享了Android Studio实现简单计算器功能的具体代码,供大家参考,具体内容如下 程序步骤: (1)在布局文件定义一些计算器界面的文本框,按钮等组件。 (2)在Activity中获取组件实例。 (3)通过swtich函
2022-06-06

iOS开发实现计算器功能

本文实例为大家分享了iOS实现计算器功能的具体代码,供大家参考,具体内容如下 效果图Masonry 使用数组来自动约束NSArray *buttonArrayOne = @[_buttonAC, _buttonLeftBracket, _b
2022-05-28

Android studio如何实现简易的计算器功能

这篇文章主要讲解了“Android studio如何实现简易的计算器功能”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“Android studio如何实现简易的计算器功能”吧!具体效果如下J
2023-06-30

android studio怎么实现简单的计算器小功能

这篇文章主要介绍了android studio怎么实现简单的计算器小功能的相关知识,内容详细易懂,操作简单快捷,具有一定借鉴价值,相信大家阅读完这篇android studio怎么实现简单的计算器小功能文章都会有所收获,下面我们一起来看看吧
2023-06-30

Android Studio实现发短信功能

首先需要在AndroidManifest注册权限
2023-05-31

Android studio实现简单计算器

本文实例为大家分享了Android studio实现简单计算器的具体代码,供大家参考,具体内容如下 需求分析 在Android studio中设计并实现一个简单的计算器,实现连续的加减乘除运算。 界面设计 采用网格GridLayout布局,
2022-06-06

简单实现Android计算器功能

自己写的安卓的计算器: 注:这个是在mac中开发的,如果要在windows的eclipse中运行可能会出现路径问题,解决办法从windows中已有的安卓工程根目录下复制一下classpath文件,然后复制粘贴覆盖掉这个工程根目录里面的路径文
2022-06-06

Android studio怎么制作简易计算器功能

这篇文章主要介绍“Android studio怎么制作简易计算器功能”,在日常操作中,相信很多人在Android studio怎么制作简易计算器功能问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”Android
2023-06-30

Android Studio实现简单计算器APP

一、简介:用Android Studio 实现一个简单的计算器APP,并在蓝叠模拟器中运行。 该计算器只能实现两位数字的四则运算。 二、代码 activity_main.xml ---界面设计
2022-06-06

编程热搜

  • Android:VolumeShaper
    VolumeShaper(支持版本改一下,minsdkversion:26,android8.0(api26)进一步学习对声音的编辑,可以让音频的声音有变化的播放 VolumeShaper.Configuration的三个参数 durati
    Android:VolumeShaper
  • Android崩溃异常捕获方法
    开发中最让人头疼的是应用突然爆炸,然后跳回到桌面。而且我们常常不知道这种状况会何时出现,在应用调试阶段还好,还可以通过调试工具的日志查看错误出现在哪里。但平时使用的时候给你闹崩溃,那你就欲哭无泪了。 那么今天主要讲一下如何去捕捉系统出现的U
    Android崩溃异常捕获方法
  • android开发教程之获取power_profile.xml文件的方法(android运行时能耗值)
    系统的设置–>电池–>使用情况中,统计的能耗的使用情况也是以power_profile.xml的value作为基础参数的1、我的手机中power_profile.xml的内容: HTC t328w代码如下:
    android开发教程之获取power_profile.xml文件的方法(android运行时能耗值)
  • Android SQLite数据库基本操作方法
    程序的最主要的功能在于对数据进行操作,通过对数据进行操作来实现某个功能。而数据库就是很重要的一个方面的,Android中内置了小巧轻便,功能却很强的一个数据库–SQLite数据库。那么就来看一下在Android程序中怎么去操作SQLite数
    Android SQLite数据库基本操作方法
  • ubuntu21.04怎么创建桌面快捷图标?ubuntu软件放到桌面的技巧
    工作的时候为了方便直接打开编辑文件,一些常用的软件或者文件我们会放在桌面,但是在ubuntu20.04下直接直接拖拽文件到桌面根本没有效果,在进入桌面后发现软件列表中的软件只能收藏到面板,无法复制到桌面使用,不知道为什么会这样,似乎并不是很
    ubuntu21.04怎么创建桌面快捷图标?ubuntu软件放到桌面的技巧
  • android获取当前手机号示例程序
    代码如下: public String getLocalNumber() { TelephonyManager tManager =
    android获取当前手机号示例程序
  • Android音视频开发(三)TextureView
    简介 TextureView与SurfaceView类似,可用于显示视频或OpenGL场景。 与SurfaceView的区别 SurfaceView不能使用变换和缩放等操作,不能叠加(Overlay)两个SurfaceView。 Textu
    Android音视频开发(三)TextureView
  • android获取屏幕高度和宽度的实现方法
    本文实例讲述了android获取屏幕高度和宽度的实现方法。分享给大家供大家参考。具体分析如下: 我们需要获取Android手机或Pad的屏幕的物理尺寸,以便于界面的设计或是其他功能的实现。下面就介绍讲一讲如何获取屏幕的物理尺寸 下面的代码即
    android获取屏幕高度和宽度的实现方法
  • Android自定义popupwindow实例代码
    先来看看效果图:一、布局
  • Android第一次实验
    一、实验原理 1.1实验目标 编程实现用户名与密码的存储与调用。 1.2实验要求 设计用户登录界面、登录成功界面、用户注册界面,用户注册时,将其用户名、密码保存到SharedPreference中,登录时输入用户名、密码,读取SharedP
    Android第一次实验

目录