返回顶部
首页 > 资讯 > 精选 >Android studio开发怎么实现计算器功能
  • 131
分享到

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

2023-06-30 15:06:56 131人浏览 泡泡鱼
摘要

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

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

前言

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

使用工具

Android Studio 或者 intellij idea

首先体验一下结果

预览图

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

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

源码

前端页面布局

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.myappch6;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("");        }    }}

关于“Android studio开发怎么实现计算器功能”的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识,可以关注编程网精选频道,小编每天都会为大家更新不同的知识点。

--结束END--

本文标题: Android studio开发怎么实现计算器功能

本文链接: https://lsjlt.com/news/329808.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
  • Android studio开发怎么实现计算器功能
    这篇文章主要介绍“Android studio开发怎么实现计算器功能”的相关知识,小编通过实际案例向大家展示操作过程,操作方法简单快捷,实用性强,希望这篇“Android studio开发怎么实现计算器功能”文章能帮助大...
    99+
    2023-06-30
  • Android studio开发实现计算器功能
    Android移动开发实现简单计算器功能,供大家参考,具体内容如下 前言 android 开发小实验android 移动开发实现 简易计算器功能小白也能轻松上手,复制粘贴就可使用 使...
    99+
    2024-04-02
  • Android Studio开发实现简单计算器功能
    本文实例为大家分享了Android Studio开发实现简单计算器的具体代码,供大家参考,具体内容如下 代码: activity_3.xml <xml version="1.0...
    99+
    2024-04-02
  • Android Studio实现简单计算器功能
    本文实例为大家分享了Android Studio实现简单计算器功能的具体代码,供大家参考,具体内容如下 程序步骤: (1)在布局文件定义一些计算器界面的文本框,按钮等组件。 (...
    99+
    2022-06-06
    Android Studio studio Android
  • Android Studio实现简单计算器开发
    本文实例为大家分享了Android Studio实现简单计算器开的具体代码,供大家参考,具体内容如下 效果展示: 路径和文件: AndroidManifest.xml <...
    99+
    2024-04-02
  • Android开发实现简单计算器功能
    计算器项目,要求实现加、减、乘、除、求倒数、求平方根等简单运算。 真机调试结果如下图: 布局文件:main_activity.xml <?xml version=...
    99+
    2024-04-02
  • 用Android studio实现简易计算器功能
    用Android studio做一个简易计算器,供大家参考,具体内容如下 长话短说,先建立一个Android项目; 创建完成后打开activity_main.xml,构建我们的应...
    99+
    2024-04-02
  • android studio怎么实现简单的计算器小功能
    这篇文章主要介绍了android studio怎么实现简单的计算器小功能的相关知识,内容详细易懂,操作简单快捷,具有一定借鉴价值,相信大家阅读完这篇android studio怎么实现简单的计算器小功能文章都会有所收获,...
    99+
    2023-06-30
  • android studio实现简单的计算器小功能
    本文实例为大家分享了android studio实现简单计算器的具体代码,供大家参考,具体内容如下 布局: <xml version="1.0" encoding="utf-8...
    99+
    2024-04-02
  • iOS开发实现计算器功能
    本文实例为大家分享了iOS实现计算器功能的具体代码,供大家参考,具体内容如下 效果图 Masonry 使用数组来自动约束 NSArray *buttonArrayOne = @...
    99+
    2022-05-28
    iOS 计算器
  • Android studio如何实现简易的计算器功能
    这篇文章主要讲解了“Android studio如何实现简易的计算器功能”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“Android studio如何实现简易的计算器功能...
    99+
    2023-06-30
  • Android studio怎么制作简易计算器功能
    这篇文章主要介绍“Android studio怎么制作简易计算器功能”,在日常操作中,相信很多人在Android studio怎么制作简易计算器功能问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家...
    99+
    2023-06-30
  • iOS开发实现简单计算器功能
    用Object-C写的一个简单的计算机程序,主要学习按钮的action动作。 下面是主界面: 下面代码时界面按钮和ViewController.h连接的地方: - (IBActio...
    99+
    2024-04-02
  • Android Studio怎么实现简易计算器设计
    今天小编给大家分享一下Android Studio怎么实现简易计算器设计的相关知识点,内容详细,逻辑清晰,相信大部分人都还太了解这方面的知识,所以分享这篇文章给大家参考一下,希望大家阅读完这篇文章后有所收获,下面我们一起来了解一下...
    99+
    2023-06-30
  • Android Studio实现发短信功能
    首先需要在AndroidManifest注册权限<uses-permission android:name="android.permission.SEND_SMS"></uses-permission>...
    99+
    2023-05-31
    android studio 发短信
  • Android Studio怎么实现简易计算器App
    本篇内容主要讲解“Android Studio怎么实现简易计算器App”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“Android Studio怎么实现简易计算器App”吧!...
    99+
    2023-06-30
  • Android studio实现简单计算器
    本文实例为大家分享了Android studio实现简单计算器的具体代码,供大家参考,具体内容如下 需求分析 在Android studio中设计并实现一个简单的计算器,实现连...
    99+
    2022-06-06
    Android Studio studio Android
  • 简单实现Android计算器功能
    自己写的安卓的计算器: 注:这个是在mac中开发的,如果要在windows的eclipse中运行可能会出现路径问题,解决办法从windows中已有的安卓工程根目录下复制一下cl...
    99+
    2022-06-06
    Android
  • Android实现简易计算器功能
    本项目为大家分享了Android实现计算器功能的具体代码,供大家参考,具体内容如下 项目介绍 练手项目。能实现加减乘除及括号运算。 开发思路 界面布局  1.界面布...
    99+
    2024-04-02
  • Android实现房贷计算器功能
    本文实例为大家分享了Android实现房贷计算器的具体代码,供大家参考,具体内容如下 package com.atomic.moretool; import android.os....
    99+
    2024-04-02
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作