安卓实现一个简单的计算器
假设我们输入一个操作数8,后面输入一个9,那么就拼接成了89,直到我们输入运算,那么接下来的数字才会被认为是第二个操作数。注意,当前那位为0时就不要继续拼接。其中refresh方法用来刷新文本显示。我们先来实现一个计算器布局。现在我们来处理加减乘除。右上角是之前的记账本。
·
我们先来实现一个计算器布局
右上角是之前的记账本
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#EEEEEE"
android:orientation="vertical"
android:padding="5dp">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="60dp">
<TextView
android:id="@+id/bill_book"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="=记账本"
android:background="@color/light_blue_A400"
android:textSize="30dp"/>
</LinearLayout>
<ScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:text="@string/simple_calculator"
android:textColor="@color/black"
android:textSize="20sp" />
<TextView
android:id="@+id/tv_result"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/white"
android:gravity="right|bottom"
android:lines="3"
android:text="0"
android:textColor="@color/black"
android:textSize="25sp" />
<GridLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:columnCount="4"
android:rowCount="5">
<Button
android:id="@+id/btn_cancel"
android:layout_width="0dp"
android:layout_height="@dimen/button_height"
android:layout_columnWeight="1"
android:gravity="center"
android:text="@string/cancel"
android:textColor="@color/black"
android:textSize="@dimen/button_font_size" />
<Button
android:id="@+id/btn_divide"
android:layout_width="0dp"
android:layout_height="@dimen/button_height"
android:layout_columnWeight="1"
android:gravity="center"
android:text="@string/divide"
android:textColor="@color/black"
android:textSize="@dimen/button_font_size" />
<Button
android:id="@+id/btn_multiply"
android:layout_width="0dp"
android:layout_height="@dimen/button_height"
android:layout_columnWeight="1"
android:gravity="center"
android:text="@string/multiply"
android:textColor="@color/black"
android:textSize="@dimen/button_font_size" />
<Button
android:id="@+id/btn_clear"
android:layout_width="0dp"
android:layout_height="@dimen/button_height"
android:layout_columnWeight="1"
android:gravity="center"
android:text="@string/clear"
android:textColor="@color/black"
android:textSize="@dimen/button_font_size" />
<Button
android:id="@+id/btn_seven"
android:layout_width="0dp"
android:layout_height="@dimen/button_height"
android:layout_columnWeight="1"
android:gravity="center"
android:text="@string/seven"
android:textColor="@color/black"
android:textSize="@dimen/button_font_size" />
<Button
android:id="@+id/btn_eight"
android:layout_width="0dp"
android:layout_height="@dimen/button_height"
android:layout_columnWeight="1"
android:gravity="center"
android:text="@string/eight"
android:textColor="@color/black"
android:textSize="@dimen/button_font_size" />
<Button
android:id="@+id/btn_nine"
android:layout_width="0dp"
android:layout_height="@dimen/button_height"
android:layout_columnWeight="1"
android:gravity="center"
android:text="@string/nine"
android:textColor="@color/black"
android:textSize="@dimen/button_font_size" />
<Button
android:id="@+id/btn_plus"
android:layout_width="0dp"
android:layout_height="@dimen/button_height"
android:layout_columnWeight="1"
android:gravity="center"
android:text="@string/plus"
android:textColor="@color/black"
android:textSize="@dimen/button_font_size" />
<Button
android:id="@+id/btn_four"
android:layout_width="0dp"
android:layout_height="@dimen/button_height"
android:layout_columnWeight="1"
android:gravity="center"
android:text="@string/four"
android:textColor="@color/black"
android:textSize="@dimen/button_font_size" />
<Button
android:id="@+id/btn_five"
android:layout_width="0dp"
android:layout_height="@dimen/button_height"
android:layout_columnWeight="1"
android:gravity="center"
android:text="@string/five"
android:textColor="@color/black"
android:textSize="@dimen/button_font_size" />
<Button
android:id="@+id/btn_six"
android:layout_width="0dp"
android:layout_height="@dimen/button_height"
android:layout_columnWeight="1"
android:gravity="center"
android:text="@string/six"
android:textColor="@color/black"
android:textSize="@dimen/button_font_size" />
<Button
android:id="@+id/btn_minus"
android:layout_width="0dp"
android:layout_height="@dimen/button_height"
android:layout_columnWeight="1"
android:gravity="center"
android:text="@string/minus"
android:textColor="@color/black"
android:textSize="@dimen/button_font_size" />
<Button
android:id="@+id/btn_one"
android:layout_width="0dp"
android:layout_height="@dimen/button_height"
android:layout_columnWeight="1"
android:gravity="center"
android:text="@string/one"
android:textColor="@color/black"
android:textSize="@dimen/button_font_size" />
<Button
android:id="@+id/btn_two"
android:layout_width="0dp"
android:layout_height="@dimen/button_height"
android:layout_columnWeight="1"
android:gravity="center"
android:text="@string/two"
android:textColor="@color/black"
android:textSize="@dimen/button_font_size" />
<Button
android:id="@+id/btn_three"
android:layout_width="0dp"
android:layout_height="@dimen/button_height"
android:layout_columnWeight="1"
android:gravity="center"
android:text="@string/three"
android:textColor="@color/black"
android:textSize="@dimen/button_font_size" />
<Button
android:id="@+id/ib_sqrt"
android:layout_width="0dp"
android:layout_height="@dimen/button_height"
android:layout_columnWeight="1"
android:gravity="center"
android:text="✓"
android:textColor="@color/black"
android:textSize="@dimen/button_font_size" />
<Button
android:id="@+id/btn_reciprocal"
android:layout_width="0dp"
android:layout_height="@dimen/button_height"
android:layout_columnWeight="1"
android:gravity="center"
android:text="@string/reciprocal"
android:textColor="@color/black"
android:textSize="@dimen/button_font_size" />
<Button
android:id="@+id/btn_zero"
android:layout_width="0dp"
android:layout_height="@dimen/button_height"
android:layout_columnWeight="1"
android:gravity="center"
android:text="@string/zero"
android:textColor="@color/black"
android:textSize="@dimen/button_font_size" />
<Button
android:id="@+id/btn_dot"
android:layout_width="0dp"
android:layout_height="@dimen/button_height"
android:layout_columnWeight="1"
android:gravity="center"
android:text="@string/dot"
android:textColor="@color/black"
android:textSize="@dimen/button_font_size" />
<Button
android:id="@+id/btn_equal"
android:layout_width="0dp"
android:layout_height="@dimen/button_height"
android:layout_columnWeight="1"
android:gravity="center"
android:text="@string/equal"
android:textColor="@color/black"
android:textSize="@dimen/button_font_size" />
</GridLayout>
</LinearLayout>
</ScrollView>
</LinearLayout>
思路
我们定义几个变量
假设我们输入一个操作数8,后面输入一个9,那么就拼接成了89,直到我们输入运算,那么接下来的数字才会被认为是第二个操作数。注意,当前那位为0时就不要继续拼接
// 无运算符,则继续拼接第一个操作数
if (operator.equals("")) {
firstNum = firstNum + inputText;
} else {
// 有运算符,则继续拼接第二个操作数
secondNum = secondNum + inputText;
}
// 整数不需要前面的0
if (showText.equals("0") && !inputText.equals(".")) {
refreshText(inputText);
} else {
refreshText(showText + inputText);
}
其中refresh方法用来刷新文本显示
private void refreshText(String text) {
showText = text;
tv_result.setText(showText);
}
现在我们来处理加减乘除
case R.id.btn_equal:
if ((firstNum == "") || (secondNum =="")) {
ToastUtil.show(getActivity(),"请正确输入");
break;
}
// 加减乘除四则运算
double calculate_result = calculateFour();
refreshOperate(String.valueOf(calculate_result));
refreshText(showText + "=" + result);
break;
全部代码为
package com.example.androidapp.fragments;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.fragment.app.Fragment;
import android.content.Intent;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.TextView;
import com.example.androidapp.BillPagerActivity;
import com.example.androidapp.MainActivity;
import com.example.androidapp.R;
import com.example.androidapp.utils.ToastUtil;
public class CalculatorFragment extends Fragment implements View.OnClickListener {
private TextView tv_result;
// 第一个操作数
private String firstNum = "";
// 运算符
private String operator = "";
// 第二个操作数
private String secondNum = "";
// 当前的计算结果
private String result = "";
// 显示的文本内容
private String showText = "";
@Nullable
@Override
public View onCreateView(@NonNull LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
return inflater.inflate(R.layout.calculator_activity, container, false);
}
@Override
public void onViewCreated(@NonNull View view, @Nullable Bundle savedInstanceState) {
super.onViewCreated(view, savedInstanceState);
view.findViewById(R.id.bill_book).setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Intent intent = new Intent();
intent.setClass(getActivity(), BillPagerActivity.class);
startActivity(intent);
}
});
// 从布局文件中获取名叫tv_result的文本视图
tv_result = view.findViewById(R.id.tv_result);
// 下面给每个按钮控件都注册了点击监听器
view.findViewById(R.id.btn_cancel).setOnClickListener(this);
view.findViewById(R.id.btn_divide).setOnClickListener(this); // “除法”按钮
view.findViewById(R.id.btn_multiply).setOnClickListener(this); // “乘法”按钮
view.findViewById(R.id.btn_clear).setOnClickListener(this); // “清除”按钮
view.findViewById(R.id.btn_seven).setOnClickListener(this); // 数字7
view.findViewById(R.id.btn_eight).setOnClickListener(this); // 数字8
view.findViewById(R.id.btn_nine).setOnClickListener(this); // 数字9
view.findViewById(R.id.btn_plus).setOnClickListener(this); // “加法”按钮
view.findViewById(R.id.btn_four).setOnClickListener(this); // 数字4
view.findViewById(R.id.btn_five).setOnClickListener(this); // 数字5
view.findViewById(R.id.btn_six).setOnClickListener(this); // 数字6
view.findViewById(R.id.btn_minus).setOnClickListener(this); // “减法”按钮
view.findViewById(R.id.btn_one).setOnClickListener(this); // 数字1
view.findViewById(R.id.btn_two).setOnClickListener(this); // 数字2
view.findViewById(R.id.btn_three).setOnClickListener(this); // 数字3
view.findViewById(R.id.btn_reciprocal).setOnClickListener(this); // 求倒数按钮
view.findViewById(R.id.btn_zero).setOnClickListener(this); // 数字0
view.findViewById(R.id.btn_dot).setOnClickListener(this); // “小数点”按钮
view.findViewById(R.id.btn_equal).setOnClickListener(this); // “等号”按钮
view.findViewById(R.id.ib_sqrt).setOnClickListener(this); // “开平方”按钮
}
@Override
public void onClick(View v) {
String inputText = ((TextView) v).getText().toString();
switch (v.getId()) {
// 点击了清除按钮
case R.id.btn_clear:
clear();
break;
// 点击了取消按钮
case R.id.btn_cancel:
break;
// 点击了加、减、乘、除按钮
case R.id.btn_plus:
case R.id.btn_minus:
case R.id.btn_multiply:
case R.id.btn_divide:
operator = inputText; // 运算符
refreshText(showText + operator);
break;
// 点击了等号按钮
case R.id.btn_equal:
if ((firstNum == "") || (secondNum =="")) {
ToastUtil.show(getActivity(),"请正确输入");
break;
}
// 加减乘除四则运算
double calculate_result = calculateFour();
refreshOperate(String.valueOf(calculate_result));
refreshText(showText + "=" + result);
break;
// 点击了开根号按钮
case R.id.ib_sqrt:
if (firstNum == "") {
ToastUtil.show(getActivity(),"请正确输入");
break;
}
double sqrt_result = Math.sqrt(Double.parseDouble(firstNum));
refreshOperate(String.valueOf(sqrt_result));
refreshText(showText + "√=" + result);
// 点击了求倒数按钮
case R.id.btn_reciprocal:
if (firstNum == "") {
ToastUtil.show(getActivity(),"请正确输入");
break;
}
double reciprocal_result = 1.0 / Double.parseDouble(firstNum);
refreshOperate(String.valueOf(reciprocal_result));
refreshText(showText + "/=" + result);
break;
// 点击了其他按钮,包括数字和小数点
default:
// 上次的运算结果已经出来了
if (result.length() > 0 && operator.equals("")) {
clear();
}
// 无运算符,则继续拼接第一个操作数
if (operator.equals("")) {
firstNum = firstNum + inputText;
} else {
// 有运算符,则继续拼接第二个操作数
secondNum = secondNum + inputText;
}
// 整数不需要前面的0
if (showText.equals("0") && !inputText.equals(".")) {
refreshText(inputText);
} else {
refreshText(showText + inputText);
}
break;
}
}
// 加减乘除四则运算,返回计算结果
private double calculateFour() {
switch (operator) {
case "+":
return Double.parseDouble(firstNum) + Double.parseDouble(secondNum);
case "-":
return Double.parseDouble(firstNum) - Double.parseDouble(secondNum);
case "×":
return Double.parseDouble(firstNum) * Double.parseDouble(secondNum);
default:
return Double.parseDouble(firstNum) / Double.parseDouble(secondNum);
}
}
// 清空并初始化
private void clear() {
refreshOperate("");
refreshText("");
}
// 刷新运算结果
private void refreshOperate(String new_result) {
result = new_result;
firstNum = result;
secondNum = "";
operator = "";
}
// 刷新文本显示
private void refreshText(String text) {
showText = text;
tv_result.setText(showText);
}
}
更多推荐
已为社区贡献2条内容
所有评论(0)