Android实现简单的计算器功能

Android实现简单的计算器功能

**前言:**通过Android实现简单的计算器功能,实现简单的加、减、乘、除操作。

效果图如下:

这里写图片描述

  1. 第一步

布局文件:activity_main.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:orientation="vertical"
    android:paddingBottom="10dp"
    android:paddingLeft="10dp"
    android:paddingRight="10dp"
    android:paddingTop="10dp"
    tools:context="com.newdegree.calculator.MainActivity"
    >

    <EditText
        android:id="@+id/et_input"
        android:layout_width="fill_parent"
        android:layout_height="60dp"
        android:inputType="none"
        android:gravity="center|right"
        android:background="#f0f0f0"/>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="20dp"
        android:orientation="horizontal">
        
        <Button
            android:id="@+id/btn_clear"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="C"
            android:textSize="20sp"/>

        <Button
            android:id="@+id/btn_del"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginLeft="5dp"
            android:text="DEL"
            android:textSize="20sp"/>

        <Button
            android:id="@+id/btn_divide"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginLeft="5dp"
            android:text="/"
            android:textSize="20sp"/>

        <Button
            android:id="@+id/btn_multply"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginLeft="5dp"
            android:text="*"
            android:textSize="20sp"/>
        
    </LinearLayout>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="10dp"
        android:orientation="horizontal">

        <Button
            android:id="@+id/btn_7"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="7"
            android:textSize="20sp"/>

        <Button
            android:id="@+id/btn_8"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginLeft="5dp"
            android:text="8"
            android:textSize="20sp"/>

        <Button
            android:id="@+id/btn_9"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginLeft="5dp"
            android:text="9"
            android:textSize="20sp"/>

        <Button
            android:id="@+id/btn_minus"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginLeft="5dp"
            android:text="-"
            android:textSize="20sp"/>

    </LinearLayout>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="10dp"
        android:orientation="horizontal">

        <Button
            android:id="@+id/btn_4"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="4"
            android:textSize="20sp"/>

        <Button
            android:id="@+id/btn_5"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginLeft="5dp"
            android:text="5"
            android:textSize="20sp"/>

        <Button
            android:id="@+id/btn_6"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginLeft="5dp"
            android:text="6"
            android:textSize="20sp"/>

        <Button
            android:id="@+id/btn_plus"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginLeft="5dp"
            android:text="+"
            android:textSize="20sp"/>

    </LinearLayout>

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="10dp"
        android:orientation="horizontal">

        <LinearLayout
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:orientation="vertical">

            <LinearLayout
                android:layout_width="wrap_content"
                android:layout_height="wrap_content">

                <Button
                    android:id="@+id/btn_1"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:text="1"
                    android:textSize="20sp"/>

                <Button
                    android:id="@+id/btn_2"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_marginLeft="5dp"
                    android:text="2"
                    android:textSize="20sp"/>

                <Button
                    android:id="@+id/btn_3"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_marginLeft="5dp"
                    android:text="3"
                    android:textSize="20sp"/>

            </LinearLayout>

            <LinearLayout
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:paddingTop="10dp"
                android:weightSum="1">

                <Button
                    android:id="@+id/btn_0"
                    android:layout_width="180dp"
                    android:layout_height="wrap_content"
                    android:text="0"
                    android:textSize="20sp"/>

                <Button
                    android:id="@+id/btn_point"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:layout_marginLeft="5dp"
                    android:layout_weight="18.10"
                    android:text="."
                    android:textSize="20sp"/>


            </LinearLayout>

        </LinearLayout>

        <Button
            android:id="@+id/btn_equal"
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:layout_marginLeft="5dp"
            android:background="@android:color/holo_orange_light"
            android:text="="
            android:textSize="20sp"/>

    </LinearLayout>

</LinearLayout>

布局文件中定义了计算器界面的一些按钮和显示数字的组件。

  1. 第二步

MainActivity.java

public class MainActivity extends AppCompatActivity implements View.OnClickListener {
    private Button btn_0;//0数字按钮
    private Button btn_1;//1数字按钮
    private Button btn_2;//2数字按钮
    private Button btn_3;//3数字按钮
    private Button btn_4;//4数字按钮
    private Button btn_5;//5数字按钮
    private Button btn_6;//6数字按钮
    private Button btn_7;//7数字按钮
    private Button btn_8;//8数字按钮
    private Button btn_9;//9数字按钮
    private Button btn_point;//小数点按钮
    private Button btn_clear;//clear按钮
    private Button btn_del;//del按钮
    private Button btn_plus;//+按钮
    private Button btn_minus;//-按钮
    private Button btn_multply;//*按钮
    private Button btn_divide;//除号按钮
    private Button btn_equal;//=按钮
    private EditText editText;

    boolean clear_flag;//清空标识

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

        btn_0 = (Button) findViewById(R.id.btn_0);
        btn_1 = (Button) findViewById(R.id.btn_1);
        btn_2 = (Button) findViewById(R.id.btn_2);
        btn_3 = (Button) findViewById(R.id.btn_3);
        btn_4 = (Button) findViewById(R.id.btn_4);
        btn_5 = (Button) findViewById(R.id.btn_5);
        btn_6 = (Button) findViewById(R.id.btn_6);
        btn_7 = (Button) findViewById(R.id.btn_7);
        btn_8 = (Button) findViewById(R.id.btn_8);
        btn_9 = (Button) findViewById(R.id.btn_9);
        btn_point = (Button) findViewById(R.id.btn_point);
        btn_clear = (Button) findViewById(R.id.btn_clear);
        btn_del = (Button) findViewById(R.id.btn_del);
        btn_plus = (Button) findViewById(R.id.btn_plus);
        btn_minus = (Button) findViewById(R.id.btn_minus);
        btn_multply = (Button) findViewById(R.id.btn_multply);
        btn_divide = (Button) findViewById(R.id.btn_divide);
        btn_equal = (Button) findViewById(R.id.btn_equal);
        editText = (EditText) findViewById(R.id.et_input);

        btn_0.setOnClickListener(this);
        btn_1.setOnClickListener(this);
        btn_2.setOnClickListener(this);
        btn_3.setOnClickListener(this);
        btn_4.setOnClickListener(this);
        btn_5.setOnClickListener(this);
        btn_6.setOnClickListener(this);
        btn_7.setOnClickListener(this);
        btn_8.setOnClickListener(this);
        btn_9.setOnClickListener(this);
        btn_point.setOnClickListener(this);
        btn_clear.setOnClickListener(this);
        btn_del.setOnClickListener(this);
        btn_plus.setOnClickListener(this);
        btn_minus.setOnClickListener(this);
        btn_multply.setOnClickListener(this);
        btn_divide.setOnClickListener(this);
        btn_equal.setOnClickListener(this);
    }

    @Override
    public void onClick(View view) {
        String input = editText.getText().toString();
        switch (view.getId()){
            case R.id.btn_0:
            case R.id.btn_1:
            case R.id.btn_2:
            case R.id.btn_3:
            case R.id.btn_4:
            case R.id.btn_5:
            case R.id.btn_6:
            case R.id.btn_7:
            case R.id.btn_8:
            case R.id.btn_9:
            case R.id.btn_point:
                if(clear_flag){
                    clear_flag = false;
                    editText.setText("");
                }
                editText.setText(input + ((Button)view).getText());
                break;
            case R.id.btn_plus:
            case R.id.btn_minus:
            case R.id.btn_multply:
            case R.id.btn_divide:
                if(clear_flag){
                    clear_flag = false;
                    input = "";
                    editText.setText("");
                }
                editText.setText(input + " " + ((Button)view).getText() + " ");
                break;
            case R.id.btn_clear:
                clear_flag = false;
                input = "";
                editText.setText("");
                break;
            case R.id.btn_del:
                if(clear_flag){
                    clear_flag = false;
                    input = "";
                    editText.setText("");
                }else if(input != null || !input.equals("")) {
                    editText.setText(input.substring(0, input.length() - 1));
                }
                break;
            case R.id.btn_equal:
                getResult();
                break;
        }
    }

    //运算结果
    private void getResult(){
        String exp = editText.getText().toString();
        if(exp==null||exp.equals(""))
            return;
        if(!exp.contains(" "))
            return;
        if(clear_flag){
            clear_flag = false;
            return;
        }
        clear_flag = 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 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)
                    result = 0;
                else
                    result = 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;
            } else if (op.equals("-")) {
                result = 0 - 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("");
        }

    }
}

总结:一个简单的计算器就这样完成了,现在我们就可以使用自己写的计算器进行一些简单的计算了。

### 回答1: 好的,下面是用中文回复的android studio写计算器的步骤: 1. 创建一个新的Android Studio项目,选择Empty Activity模板。 2. 在activity_main.xml文件中添加一个TextView和多个Button,用于显示计算器的输入和输出。 3. 在MainActivity.java文件中定义变量和方法,用于处理计算器的逻辑运算。 4. 在Button的onClick事件中调用相应的方法,实现计算器功能。 5. 运行程序,测试计算器功能是否正常。 希望这些步骤能够帮助你成功地用Android Studio写出一个计算器。 ### 回答2: 使用Android Studio编写计算器是一个简单而有趣的项目。以下是一个基本的计算器应用程序的实现步骤: 1. 创建Android Studio项目并设置相关配置。 2. 在XML布局文件中创建计算器的用户界面元素,如按钮、文本框等。使用LinearLayout或GridLayout来布局这些元素。 3. 在Java类中,在onCreate方法中初始化界面元素,并设置按钮的点击监听器。 4. 创建一个StringBuilder对象,用于追踪用户在计算器上键入的数字和操作符。 5. 实现按钮的点击监听器,监听用户点击的按钮,并根据点击的按钮做出相应的操作。 - 如果点击了数字按钮,则将其添加到StringBuilder对象中。 - 如果点击了运算符按钮,则将StringBuilder对象中的内容解析为数字和操作符,并执行相应的计算操作。 - 如果点击了CE按钮,则清空StringBuilder对象。 - 如果点击了等号按钮,则将StringBuilder对象中的内容解析为数字和操作符,并执行计算操作,将结果显示在文本框中。 6. 实现计算方法,根据操作符执行相应的加减乘除操作,并返回计算结果。 7. 在代码中处理一些异常情况,如除数为0、多个连续运算符等,并作出相应的错误提示。 8. 运行应用程序并进行测试。 以上是一个简单计算器应用程序的实现步骤,在实际开发中还可以根据需求进行功能扩展和界面优化。希望对你有帮助! ### 回答3: 要使用Android Studio写一个计算器,可以按照以下步骤进行操作: 1. 创建一个新的Android项目并命名为“Calculator”。 2. 在布局文件(activity_main.xml)中设计计算器的界面,可以使用LinearLayout、TableLayout等布局来放置按钮和显示结果的TextView。 3. 创建一个名为MainActivity的Java类,并在其中实现计算逻辑。首先定义各个按钮的点击事件,并在点击事件中添加逻辑代码。 4. 在MainActivity中创建一个onCreate方法,并在其中通过findViewById方法来获取到布局文件中的各个按钮和TextView。 5. 在点击事件中,根据用户的点击来进行相应的操作,例如点击数字按钮将数字显示在TextView中,点击运算符按钮执行相应的运算操作。 6. 使用if-else语句或switch语句来判断用户的操作,例如当点击等于按钮时,根据用户之前输入的数字和运算符来执行运算,并将结果显示在TextView中。 7. 在计算逻辑中要考虑到错误输入的情况,例如除数为0等,并添加相应的提示或错误处理。 8. 运行并测试程序,检查是否能正常进行计算和显示结果。 9. 如果需要,可以美化界面,添加背景、调整按钮位置等。 10. 最后,可以进行额外的功能扩展,例如加入括号、支持百分比等。 这样,一个基本的计算器就完成了。通过使用Android Studio提供的开发工具和资源,开发一个计算器变得更加容易且高效。
评论 11
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值