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

Android实现简单计算器

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

北京

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

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

看不清楚,换张图片

免费获取短信验证码

Android实现简单计算器

本文实例为大家分享了Android实现简单计算器的具体代码,供大家参考,具体内容如下

功能

1、加减乘除四则运算
2、归0
3、回退
4、即时运算

配置

在build.gradle(app) 中加入下面的代码


buildFeatures {
        viewBinding = true
    }

加入位置如下所示


compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }
buildFeatures {
    viewBinding = true
}

布局


<?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:orientation="vertical"
    >
    <TextView
        android:id="@+id/tv"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="4"
        android:layout_margin="5dp"
        android:text="计算器\nby csdn weixin_44423317 "
        android:textSize="20sp"
        android:gravity="right|center"
        android:padding="6dp"
        />
    <View
        android:layout_width="match_parent"
        android:layout_height="2dp"
        android:layout_marginLeft="1dp"
        android:layout_marginRight="1dp"
        android:background="#ADADAD"/>
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="8"
        android:orientation="vertical"
        android:gravity="center_horizontal"
        >
        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="0dp"
            android:layout_weight="1"
            android:orientation="horizontal">
            <Button
                android:id="@+id/ac"
                android:layout_width="0dp"
                android:layout_height="match_parent"
                android:layout_weight="1"
                android:textSize="20sp"
                android:textColor="@color/black"
                android:text="AC"
                android:background="@color/white"/>
            <Button
                android:layout_weight="1"
                android:layout_width="0dp"
                android:layout_height="match_parent"
                android:background="#00FFFFFF"/>
            <Button
                android:layout_weight="1"
                android:layout_width="0dp"
                android:layout_height="match_parent"
                android:background="#00FFFFFF"/>
            <ImageButton
                android:id="@+id/dec"
                android:layout_width="0dp"
                android:layout_weight="1"
                android:layout_height="match_parent"
                android:textSize="20sp"
                android:textColor="@color/black"
                android:layout_gravity="right"
                android:background="@color/white"
                android:class="lazy" data-src="@drawable/ic_baseline_backspace_24"/>
        </LinearLayout>
        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="0dp"
            android:layout_weight="1"
            android:orientation="horizontal">
            <Button
                android:id="@+id/qi"
                android:layout_width="0dp"
                android:layout_weight="1"
                android:layout_height="match_parent"
                android:textSize="20sp"
                android:textColor="@color/black"
                android:text="7"
                android:background="@color/white"/>
            <Button
                android:id="@+id/ba"
                android:layout_width="0dp"
                android:layout_weight="1"
                android:layout_height="match_parent"
                android:textSize="20sp"
                android:textColor="@color/black"
                android:text="8"
                android:background="@color/white"/>
            <Button
                android:id="@+id/jiu"
                android:layout_width="0dp"
                android:layout_weight="1"
                android:layout_height="match_parent"
                android:textColor="@color/black"
                android:text="9"
                android:textSize="20sp"
                android:background="@color/white"/>
            <Button
                android:id="@+id/mul"
                android:layout_width="0dp"
                android:layout_weight="1"
                android:layout_height="match_parent"
                android:textSize="20sp"
                android:textColor="@color/black"
                android:text="x"
                android:background="@color/white"/>
        </LinearLayout>
        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="0dp"
            android:layout_weight="1"
            android:orientation="horizontal">
            <Button
                android:id="@+id/si"
                android:layout_width="0dp"
                android:layout_weight="1"
                android:textSize="20sp"
                android:layout_height="match_parent"
                android:textColor="@color/black"
                android:text="4"
                android:background="@color/white"/>
            <Button
                android:id="@+id/wu"
                android:textSize="20sp"
                android:layout_width="0dp"
                android:layout_weight="1"
                android:layout_height="match_parent"
                android:textColor="@color/black"
                android:text="5"
                android:background="@color/white"/>
            <Button
                android:id="@+id/liu"
                android:textSize="20sp"
                android:layout_width="0dp"
                android:layout_weight="1"
                android:layout_height="match_parent"
                android:textColor="@color/black"
                android:text="6"
                android:background="@color/white"/>
            <Button
                android:id="@+id/div"
                android:layout_width="0dp"
                android:layout_weight="1"
                android:textSize="20sp"
                android:layout_height="match_parent"
                android:textColor="@color/black"
                android:text="/"
                android:background="@color/white"/>
        </LinearLayout>
        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="0dp"
            android:layout_weight="1"
            android:orientation="horizontal">
            <Button
                android:id="@+id/yi"
                android:layout_width="0dp"
                android:layout_weight="1"
                android:textSize="20sp"
                android:layout_height="match_parent"
                android:textColor="@color/black"
                android:text="1"
                android:background="@color/white"/>
            <Button
                android:id="@+id/er"
                android:layout_width="0dp"
                android:layout_weight="1"
                android:layout_height="match_parent"
                android:textSize="20sp"
                android:textColor="@color/black"
                android:text="2"
                android:background="@color/white"/>
            <Button
                android:id="@+id/san"
                android:layout_width="0dp"
                android:layout_weight="1"
                android:layout_height="match_parent"
                android:textColor="@color/black"
                android:textSize="20sp"
                android:text="3"
                android:background="@color/white"/>
            <Button
                android:id="@+id/sub"
                android:layout_width="0dp"
                android:layout_weight="1"
                android:layout_height="match_parent"
                android:textColor="@color/black"
                android:textSize="20sp"
                android:text="-"
                android:background="@color/white"/>
        </LinearLayout>
        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="0dp"
            android:layout_weight="1"
            android:orientation="horizontal">
            <Button
                android:id="@+id/zero"
                android:layout_width="0dp"
                android:layout_weight="1"
                android:layout_height="match_parent"
                android:textColor="@color/black"
                android:textSize="20sp"
                android:text="0"
                android:background="@color/white"/>
            <Button
                android:id="@+id/point"
                android:layout_width="0dp"
                android:layout_weight="1"
                android:layout_height="match_parent"
                android:textColor="@color/black"
                android:textSize="20sp"
                android:text="."
                android:background="@color/white"/>
            <Button
                android:id="@+id/equal"
                android:layout_width="0dp"
                android:layout_weight="1"
                android:layout_height="match_parent"
                android:textColor="@color/black"
                android:textSize="20sp"
                android:text="="
                android:background="@color/white"/>
            <Button
                android:id="@+id/add"
                android:layout_width="0dp"
                android:layout_weight="1"
                android:layout_height="match_parent"
                android:textColor="@color/black"
                android:textSize="20sp"
                android:text="+"
                android:background="@color/white"/>
        </LinearLayout>
    </LinearLayout>
</LinearLayout>

代码


public class MainActivity extends AppCompatActivity implements View.OnClickListener {
    private String tv="0";
    private ActivityMainBinding inflate;
    private String count="";
    private boolean isMax=false;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        inflate = ActivityMainBinding.inflate(getLayoutInflater());
        setContentView(inflate.getRoot());
        inflate.zero.setOnClickListener(this);
        inflate.yi.setOnClickListener(this);
        inflate.er.setOnClickListener(this);
        inflate.san.setOnClickListener(this);
        inflate.si.setOnClickListener(this);
        inflate.wu.setOnClickListener(this);
        inflate.liu.setOnClickListener(this);
        inflate.qi.setOnClickListener(this);
        inflate.ba.setOnClickListener(this);
        inflate.jiu.setOnClickListener(this);
        inflate.add.setOnClickListener(this);
        inflate.sub.setOnClickListener(this);
        inflate.mul.setOnClickListener(this);
        inflate.div.setOnClickListener(this);
        inflate.point.setOnClickListener(this);
        inflate.equal.setOnClickListener(this);
        inflate.dec.setOnClickListener(this);
        inflate.ac.setOnClickListener(this);
    }
    private void jisuanqi(){
        List<String> strs=new ArrayList<>();
        StringBuilder f= new StringBuilder();
        for(int i=0;i<tv.length();i++) {
            if(String.valueOf(tv.charAt(i)).equals("-")) {
                if(!f.toString().equals("")){
                    strs.add(f.toString());
                    strs.add("-");
                    f = new StringBuilder();
                }else{
                    f.append("-");
                }
                continue;
            }
            if(String.valueOf(tv.charAt(i)).matches("(\\d+)|(\\.)")) {
                f.append(String.valueOf(tv.charAt(i)));
            }else {
                strs.add(f.toString());
                strs.add(String.valueOf(tv.charAt(i)));
                f = new StringBuilder();
            }
        }
        if(!f.toString().equals("")) {
            strs.add(f.toString());
        }
        if(!strs.get(strs.size()-1).matches("(\\-|)?\\d+(\\.\\d*)?$")){
            strs.remove(strs.size()-1);
        }
        double ans=number(strs,0);
        if(ans==0||ans%(int)ans==0){
            count=(int)ans+"";
        }else {
            BigDecimal bigdecimal=new BigDecimal(ans);
            String a=bigdecimal.setScale(12,5).toString();
            if(ans-(int)ans!=0) {
                while (String.valueOf(a.charAt(a.length() - 1)).equals("0")){
                    a=a.substring(0,a.length()-1);
                }
            }
            count=a;
        }
        if(isMax){
            isMax=false;
            count="∞";
        }
        showText();
    }
    private void showText(){
        inflate.tv.setText(tv);
        SpannableString spanText  =  new SpannableString(count);
        spanText.setSpan(new AbsoluteSizeSpan(30, true), 0, spanText.length(),
                Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
        inflate.tv.append("\n");
        inflate.tv.append(spanText);
    }
    private double number(List<String> n,int v) {
        double con = 0;
        int j=0;
        con=Double.valueOf(n.get(0));
        if(v==0) {
            for(int i=0;i<n.size();i++) {
                if(n.get(i).matches("(\\-|)?\\d+(\\.\\d+)?$")) {//55+5*5/5-5=
                    con=Double.valueOf(n.get(i));
                    if(n.size()>i+1) {
                        j=i+1;
                    }
                }
                if(n.get(j).equals("x")){
                    n.set(i, String.valueOf(con*Double.valueOf(n.get(i+2))));
                    n.remove(i+1);
                    n.remove(i+1);
                    return number(n,0);
                }else if(n.get(j).equals("/")){
                    if(Double.valueOf(n.get(i+2))==0){
                        isMax=true;
                        return 10;
                    }
                    n.set(i, String.valueOf(con/Double.valueOf(n.get(i+2))));
                    n.remove(i+1);
                    n.remove(i+1);
                    return number(n,0);
                }
            }
        }
        for(int i=0;i<n.size();i++) {
            if(n.get(i).matches("(\\-|)?\\d+(\\.\\d+)?$")) {//55+5*5/5-5=
                con=Double.valueOf(n.get(i));
                if(n.size()>i+1) {
                    j=i+1;
                }
            }
            if(n.get(j).equals("+")){
                n.set(i, String.valueOf(con+Double.valueOf(n.get(i+2))));
                n.remove(i+1);
                n.remove(i+1);
                return number(n,1);

            }else if(n.get(j).equals("-")){
                n.set(i, String.valueOf(con-Double.valueOf(n.get(i+2))));
                n.remove(i+1);
                n.remove(i+1);
                return number(n,1);
            }

        }
        return con;
    }

    @SuppressLint("NonConstantResourceId")
    @Override
    public void onClick(View v) {

        switch (v.getId()){
            case R.id.point:
                if(String.valueOf(tv.charAt(tv.length()-1)).matches("\\d+")){
                    tv+=".";
                    inflate.tv.setText(tv);
                }
                break;
            case R.id.zero:
            case R.id.yi:
            case R.id.er:
            case R.id.san:
            case R.id.si:
            case R.id.wu:
            case R.id.liu:
            case R.id.qi:
            case R.id.ba:
            case R.id.jiu:
                if(tv.equals("0")){
                    tv="";
                }
                Button bt_digit=findViewById(v.getId());
                tv+=bt_digit.getText();
                inflate.tv.setText(tv);
                count=tv;
                jisuanqi();
                break;
            case R.id.sub:
                if(String.valueOf(tv.charAt(0)).equals("0")){
                    tv="-";
                }else {
                    if(String.valueOf(tv.charAt(tv.length()-1)).equals(".")){
                        tv += "0";
                    }
                    tv+="-";
                }
                showText();
                break;
            case R.id.add:
            case R.id.mul:
            case R.id.div:
                Button bt_operator=findViewById(v.getId());
                String laststr=String.valueOf(tv.charAt(tv.length()-1));
                if(!laststr.matches("(\\d+)") ) {
                    tv = tv.substring(0, tv.length() - 1) + bt_operator.getText();
                }else {
                    if(laststr.equals(".")) {
                        tv += "0";
                    }
                    tv+=bt_operator.getText();
                }

                showText();
                break;
            case R.id.ac:
                tv="0";
                inflate.tv.setText(tv);
                break;
            case R.id.dec:
                if(tv.length()>1) {
                    tv = tv.substring(0, tv.length() - 1);
                }else {
                    tv="0";
                }
                jisuanqi();
                break;
            case R.id.equal:
                if(!String.valueOf(tv.charAt(tv.length()-1)).matches("(\\d+)")){
                    tv = tv.substring(0, tv.length() - 1);
                }
                count=tv;
                jisuanqi();
                tv=count;
                inflate.tv.setText(tv);
                break;
        }
    }
 }

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

免责声明:

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

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

Android实现简单计算器

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

下载Word文档

猜你喜欢

Android studio实现简单计算器

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

Android实现简单加法计算器

本文实例为大家分享了Android实现简单加法计算器的具体代码,供大家参考,具体内容如下package com.example.calculator; import android.os.Bundle; import android.app
2022-06-06

android计算器简单实现代码

本文实例为大家分享了android计算器的具体实现代码,供大家参考,具体内容如下java代码:package com.itheima74.simplecalculator4; import android.os.Bundle; import
2022-06-06

简单实现Android计算器功能

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

Android Studio实现简单计算器APP

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

Android Studio实现简单计算器功能

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

【Android】Simple_Caculator 简单计算器

Simple_Caculator Mark一下 这个计算器 是按照输入时运算符的顺序计算的 即 1 + 2 * 3 的结果是 9 我参考了网上的一些简单计算器的设计代码,简单的程度是只能两个操作数进行运算 我想多个数运算,思路 X + Y
2022-06-06

Android计算器简单逻辑实现实例分享

引言:我的android计算器的实现方式是:按钮输入一次,就处理一次。但是如果你学过数据结构(栈),就可以使用表达式解析(前缀,后缀)处理。而这个方式已经很成熟了,但是时间有限,只完成了这个简单的计算器。至于,这个Android的布局已经在
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第一次实验

目录