简易计算器

实现小型计算器软件的开发。该计算器通过0-9这10个数字按钮,“加”、“减”、“乘”、“除”和“等于”5个运算按钮,以及“清空”按钮来实现对本程序的操控,并通过一个文本框来显示计算的结果。应用本程序可以进行整数间简单的加、减、乘、除四则运算。
activity_main.xml

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout 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"
    tools:context="com.example.hades.homework7.MainActivity">

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

        <TextView
            android:id="@+id/textView2"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_weight="0.02"
            android:text="opt"
            android:textSize="18dp"
            android:textStyle="bold" />

        <TextView
            android:id="@+id/textView"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_weight="0.02"
            android:text="0"
            android:textAlignment="textEnd"
            android:textColor="#000000"
            android:textSize="40dp" />

        <GridLayout
            android:layout_width="fill_parent"
            android:layout_height="match_parent"
            android:columnCount="4"
            android:rowCount="4"
            android:layout_weight="0.02">

            <Button
                android:id="@+id/button7"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_weight="0.02"
                android:text="7" />

            <Button
                android:id="@+id/button8"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="8" />

            <Button
                android:id="@+id/button9"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="9" />

            <Button
                android:id="@+id/jia"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="+" />

            <Button
                android:id="@+id/button4"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="4" />

            <Button
                android:id="@+id/button5"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="5" />

            <Button
                android:id="@+id/button6"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="6" />

            <Button
                android:id="@+id/jian"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="-" />

            <Button
                android:id="@+id/button1"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="1" />

            <Button
                android:id="@+id/button2"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="2" />

            <Button
                android:id="@+id/button3"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="3" />

            <Button
                android:id="@+id/cheng"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="*" />

            <Button
                android:id="@+id/button0"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="0" />

            <Button
                android:id="@+id/clear"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="C" />

            <Button
                android:id="@+id/dengyu"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="=" />

            <Button
                android:id="@+id/chu"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="/" />
        </GridLayout>

    </LinearLayout>

</android.support.constraint.ConstraintLayout>

MainActivity.java

package com.example.hades.homework7;

import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;
import android.widget.Toast;

public class MainActivity extends AppCompatActivity {
    TextView tv, tv2;
    int x = 0, y = 0, opt = 0;
    String t = "";
    Integer[] bts = {R.id.button0, R.id.button1, R.id.button2, R.id.button3, R.id.button4, R.id.button5, R.id.button6, R.id.button7, R.id.button8, R.id.button9, R.id.jia, R.id.jian, R.id.cheng, R.id.chu, R.id.clear, R.id.dengyu};

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        Button[] num = new Button[bts.length];
        for (int i = 0; i < bts.length; i++) {
            num[i] = (Button) findViewById(bts[i]);
            num[i].setOnClickListener(new num_click());
        }
    }

    private class num_click implements View.OnClickListener {
        @Override
        public void onClick(View v) {
            Button bt;
            bt = (Button) v;
            tv = (TextView) findViewById(R.id.textView);
            tv2 = (TextView) findViewById(R.id.textView2);
            switch (bt.getId()) {
                case R.id.button0: {
                    if (!t.isEmpty()) {
                        t += 0;
                        tv.setText(t);
                    } else {
                        tv.setText("0");
                    }
                    break;
                }
                case R.id.button1: {
                    t += 1;
                    tv.setText(t);
                    break;
                }
                case R.id.button2: {
                    t += 2;
                    tv.setText(t);
                    break;
                }
                case R.id.button3: {
                    t += 3;
                    tv.setText(t);
                    break;
                }
                case R.id.button4: {
                    t += 4;
                    tv.setText(t);
                    break;
                }
                case R.id.button5: {
                    t += 5;
                    tv.setText(t);
                    break;
                }
                case R.id.button6: {
                    t += 6;
                    tv.setText(t);
                    break;
                }
                case R.id.button7: {
                    t += 7;
                    tv.setText(t);
                    break;
                }
                case R.id.button8: {
                    t += 8;
                    tv.setText(t);
                    break;
                }
                case R.id.button9: {
                    t += 9;
                    tv.setText(t);
                    break;
                }
                case R.id.jia: {
                    opt = 1;
                    tv2.setText("+");
                    cmp();
                    break;
                }
                case R.id.jian: {
                    opt = 2;
                    tv2.setText("-");
                    cmp();
                    break;
                }
                case R.id.cheng: {
                    opt = 3;
                    tv2.setText("*");
                    cmp();
                    break;
                }
                case R.id.chu: {
                    opt = 4;
                    tv2.setText("/");
                    cmp();
                    break;
                }
                case R.id.clear: {
                    init();
                    break;
                }
                case R.id.dengyu: {
                    dengyu();
                    break;
                }
            }


        }

        private void cmp() {
            x = Integer.parseInt(t);
            t = "";
            Toast.makeText(getApplicationContext(), "x的值为" + x,
                    Toast.LENGTH_SHORT).show();
        }

        private void dengyu() {
            y = Integer.parseInt(t);
            int z = 0;
            switch (opt) {
                case 1:
                    z = x + y;
                    break;
                case 2:
                    z = x - y;
                    break;
                case 3:
                    z = x * y;
                    break;
                case 4: {
                    if (y == 0) {
                        tv.setText("错误,除数不能为0");
                    } else {
                        z = x / y;
                    }
                }
                break;
                default:z = y;
            }
            tv.setText(Integer.toString(z));
            t = Integer.toString(z);
            x = z;
            y = z;
            tv2.setText("opt");
            opt = 0;
        }


        private void init() {
            opt = 0;
            x = 0;
            y = 0;
            t = "";
            tv2.setText("opt");
            tv.setText("0");
        }
    }
}

这里写图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值