当前位置:   article > 正文

基础复习——项目练习——计算器

tv_operate_num_result = findviewbyid(r.id.tv_operate_num_result)

布局:

  1. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2. android:layout_width="match_parent"
  3. android:layout_height="match_parent"
  4. android:background="#eeeeee"
  5. android:orientation="vertical"
  6. android:padding="5dp">
  7. <ScrollView
  8. android:layout_width="match_parent"
  9. android:layout_height="wrap_content">
  10. <LinearLayout
  11. android:layout_width="match_parent"
  12. android:layout_height="wrap_content"
  13. android:orientation="vertical">
  14. <TextView
  15. android:layout_width="400dp"
  16. android:layout_height="wrap_content"
  17. android:gravity="center"
  18. android:text="简单计算器"
  19. android:textColor="#000000"
  20. android:textSize="20sp" />
  21. <LinearLayout
  22. android:layout_width="match_parent"
  23. android:layout_height="wrap_content"
  24. android:orientation="vertical">
  25. <TextView
  26. android:id="@+id/tv_result"
  27. android:layout_width="400dp"
  28. android:layout_height="wrap_content"
  29. android:background="#ffffff"
  30. android:gravity="right|bottom"
  31. android:lines="3"
  32. android:maxLines="3"
  33. android:scrollbars="vertical"
  34. android:text="0"
  35. android:textColor="#000000"
  36. android:textSize="25sp" />
  37. </LinearLayout>
  38. <GridLayout
  39. android:layout_width="match_parent"
  40. android:layout_height="wrap_content"
  41. android:columnCount="4">
  42. <Button
  43. android:id="@+id/btn_cancel"
  44. android:layout_width="100dp"
  45. android:layout_height="75dp"
  46. android:gravity="center"
  47. android:text="CE"
  48. android:textColor="@color/black"
  49. android:textSize="30sp" />
  50. <Button
  51. android:id="@+id/btn_divide"
  52. android:layout_width="100dp"
  53. android:layout_height="75dp"
  54. android:gravity="center"
  55. android:text="÷"
  56. android:textColor="@color/black"
  57. android:textSize="30sp" />
  58. <Button
  59. android:id="@+id/btn_multiply"
  60. android:layout_width="100dp"
  61. android:layout_height="75dp"
  62. android:gravity="center"
  63. android:text="×"
  64. android:textColor="@color/black"
  65. android:textSize="30sp" />
  66. <Button
  67. android:id="@+id/btn_clear"
  68. android:layout_width="100dp"
  69. android:layout_height="75dp"
  70. android:gravity="center"
  71. android:text="C"
  72. android:textColor="@color/black"
  73. android:textSize="30sp" />
  74. <Button
  75. android:id="@+id/btn_seven"
  76. android:layout_width="100dp"
  77. android:layout_height="75dp"
  78. android:gravity="center"
  79. android:text="7"
  80. android:textColor="@color/black"
  81. android:textSize="30sp" />
  82. <Button
  83. android:id="@+id/btn_eight"
  84. android:layout_width="100dp"
  85. android:layout_height="75dp"
  86. android:gravity="center"
  87. android:text="8"
  88. android:textColor="@color/black"
  89. android:textSize="30sp" />
  90. <Button
  91. android:id="@+id/btn_nine"
  92. android:layout_width="100dp"
  93. android:layout_height="75dp"
  94. android:gravity="center"
  95. android:text="9"
  96. android:textColor="@color/black"
  97. android:textSize="30sp" />
  98. <Button
  99. android:id="@+id/btn_plus"
  100. android:layout_width="100dp"
  101. android:layout_height="75dp"
  102. android:gravity="center"
  103. android:text="+"
  104. android:textColor="@color/black"
  105. android:textSize="30sp" />
  106. <Button
  107. android:id="@+id/btn_four"
  108. android:layout_width="100dp"
  109. android:layout_height="75dp"
  110. android:gravity="center"
  111. android:text="4"
  112. android:textColor="@color/black"
  113. android:textSize="30sp" />
  114. <Button
  115. android:id="@+id/btn_five"
  116. android:layout_width="90dp"
  117. android:layout_height="75dp"
  118. android:gravity="center"
  119. android:text="5"
  120. android:textColor="@color/black"
  121. android:textSize="30sp" />
  122. <Button
  123. android:id="@+id/btn_six"
  124. android:layout_width="90dp"
  125. android:layout_height="75dp"
  126. android:gravity="center"
  127. android:text="6"
  128. android:textColor="@color/black"
  129. android:textSize="30sp" />
  130. <Button
  131. android:id="@+id/btn_minus"
  132. android:layout_width="90dp"
  133. android:layout_height="75dp"
  134. android:gravity="center"
  135. android:text="-"
  136. android:textColor="@color/black"
  137. android:textSize="30sp" />
  138. <Button
  139. android:id="@+id/btn_one"
  140. android:layout_width="90dp"
  141. android:layout_height="75dp"
  142. android:gravity="center"
  143. android:text="1"
  144. android:textColor="@color/black"
  145. android:textSize="30sp" />
  146. <Button
  147. android:id="@+id/btn_two"
  148. android:layout_width="90dp"
  149. android:layout_height="75dp"
  150. android:gravity="center"
  151. android:text="2"
  152. android:textColor="@color/black"
  153. android:textSize="30sp" />
  154. <Button
  155. android:id="@+id/btn_three"
  156. android:layout_width="90dp"
  157. android:layout_height="75dp"
  158. android:gravity="center"
  159. android:text="3"
  160. android:textColor="@color/black"
  161. android:textSize="30sp" />
  162. <ImageButton
  163. android:id="@+id/ib_sqrt"
  164. android:layout_width="90dp"
  165. android:layout_height="75dp"
  166. android:scaleType="centerInside"
  167. android:src="@drawable/sqrt" />
  168. <Button
  169. android:id="@+id/btn_reciprocal"
  170. android:layout_width="90dp"
  171. android:layout_height="75dp"
  172. android:gravity="center"
  173. android:text="1/x"
  174. android:textColor="@color/black"
  175. android:textSize="30sp" />
  176. <Button
  177. android:id="@+id/btn_zero"
  178. android:layout_width="90dp"
  179. android:layout_height="75dp"
  180. android:gravity="center"
  181. android:text="0"
  182. android:textColor="@color/black"
  183. android:textSize="30sp" />
  184. <Button
  185. android:id="@+id/btn_dot"
  186. android:layout_width="90dp"
  187. android:layout_height="75dp"
  188. android:gravity="center"
  189. android:text="."
  190. android:textColor="@color/black"
  191. android:textSize="30sp" />
  192. <Button
  193. android:id="@+id/btn_equal"
  194. android:layout_width="90dp"
  195. android:layout_height="75dp"
  196. android:gravity="center"
  197. android:text="="
  198. android:textColor="@color/black"
  199. android:textSize="30sp" />
  200. </GridLayout>
  201. </LinearLayout>
  202. </ScrollView>
  203. </LinearLayout>

代码:

  1. package com.example.myapplication;
  2. import androidx.appcompat.app.AppCompatActivity;
  3. import android.os.Bundle;
  4. import android.util.Log;
  5. import android.view.View;
  6. import android.widget.TextView;
  7. import android.widget.Toast;
  8. public class NextActivity extends AppCompatActivity implements View.OnClickListener
  9. {
  10. private final static String TAG = "CalculatorActivity";
  11. private TextView tv_result; // 声明一个文本视图对象
  12. private String operator = ""; // 运算符
  13. private String firstNum = ""; // 第一个操作数
  14. private String secondNum = ""; // 第二个操作数
  15. private String result = ""; // 当前的计算结果
  16. private String showText = ""; // 显示的文本内容
  17. @Override
  18. protected void onCreate(Bundle savedInstanceState)
  19. {
  20. super.onCreate(savedInstanceState);
  21. setContentView(R.layout.activity_next);
  22. // 从布局文件中获取名叫tv_result的文本视图
  23. tv_result = findViewById(R.id.tv_result);
  24. // 下面给每个按钮控件都注册了点击监听器
  25. findViewById(R.id.btn_cancel).setOnClickListener(this); // “取消”按钮
  26. findViewById(R.id.btn_divide).setOnClickListener(this); // “除法”按钮
  27. findViewById(R.id.btn_multiply).setOnClickListener(this); // “乘法”按钮
  28. findViewById(R.id.btn_clear).setOnClickListener(this); // “清除”按钮
  29. findViewById(R.id.btn_seven).setOnClickListener(this); // 数字7
  30. findViewById(R.id.btn_eight).setOnClickListener(this); // 数字8
  31. findViewById(R.id.btn_nine).setOnClickListener(this); // 数字9
  32. findViewById(R.id.btn_plus).setOnClickListener(this); // “加法”按钮
  33. findViewById(R.id.btn_four).setOnClickListener(this); // 数字4
  34. findViewById(R.id.btn_five).setOnClickListener(this); // 数字5
  35. findViewById(R.id.btn_six).setOnClickListener(this); // 数字6
  36. findViewById(R.id.btn_minus).setOnClickListener(this); // “减法”按钮
  37. findViewById(R.id.btn_one).setOnClickListener(this); // 数字1
  38. findViewById(R.id.btn_two).setOnClickListener(this); // 数字2
  39. findViewById(R.id.btn_three).setOnClickListener(this); // 数字3
  40. findViewById(R.id.btn_reciprocal).setOnClickListener(this); // 求倒数按钮
  41. findViewById(R.id.btn_zero).setOnClickListener(this); // 数字0
  42. findViewById(R.id.btn_dot).setOnClickListener(this); // “小数点”按钮
  43. findViewById(R.id.btn_equal).setOnClickListener(this); // “等号”按钮
  44. findViewById(R.id.ib_sqrt).setOnClickListener(this); // “开平方”按钮
  45. }
  46. private boolean verify(View v)
  47. {
  48. if (v.getId() == R.id.btn_cancel) { // 点击了取消按钮
  49. if (operator.equals("") && (firstNum.equals("") || firstNum.equals("0"))) { // 无运算符,则表示逐位取消第一个操作数
  50. Toast.makeText(this, "没有可取消的数字了", Toast.LENGTH_SHORT).show();
  51. return false;
  52. }
  53. if (!operator.equals("") && secondNum.equals("")) { // 有运算符,则表示逐位取消第二个操作数
  54. Toast.makeText(this, "没有可取消的数字了", Toast.LENGTH_SHORT).show();
  55. return false;
  56. }
  57. } else if (v.getId() == R.id.btn_equal) { // 点击了等号按钮
  58. if (operator.equals("")) { // 无运算符
  59. Toast.makeText(this, "请输入运算符", Toast.LENGTH_SHORT).show();
  60. return false;
  61. }
  62. if (firstNum.equals("") || secondNum.equals("")) { // 无操作数
  63. Toast.makeText(this, "请输入数字", Toast.LENGTH_SHORT).show();
  64. return false;
  65. }
  66. if (operator.equals("÷") && Double.parseDouble(secondNum) == 0) { // 除数为零
  67. Toast.makeText(this, "除数不能为零", Toast.LENGTH_SHORT).show();
  68. return false;
  69. }
  70. } else if (v.getId() == R.id.btn_plus || v.getId() == R.id.btn_minus // 点击了加、减、乘、除按钮
  71. || v.getId() == R.id.btn_multiply || v.getId() == R.id.btn_divide) {
  72. if (firstNum.equals("")) { // 缺少第一个操作数
  73. Toast.makeText(this, "请输入数字", Toast.LENGTH_SHORT).show();
  74. return false;
  75. }
  76. if (!operator.equals("")) { // 已有运算符
  77. Toast.makeText(this, "请输入数字", Toast.LENGTH_SHORT).show();
  78. return false;
  79. }
  80. } else if (v.getId() == R.id.ib_sqrt) { // 点击了开根号按钮
  81. if (firstNum.equals("")) { // 缺少底数
  82. Toast.makeText(this, "请输入数字", Toast.LENGTH_SHORT).show();
  83. return false;
  84. }
  85. if (Double.parseDouble(firstNum) < 0) { // 不能对负数开平方
  86. Toast.makeText(this, "开根号的数值不能小于零", Toast.LENGTH_SHORT).show();
  87. return false;
  88. }
  89. } else if (v.getId() == R.id.btn_reciprocal) { // 点击了求倒数按钮
  90. if (firstNum.equals("")) { // 缺少底数
  91. Toast.makeText(this, "请输入数字", Toast.LENGTH_SHORT).show();
  92. return false;
  93. }
  94. if (Double.parseDouble(firstNum) == 0) { // 不能对零求倒数
  95. Toast.makeText(this, "不能对零求倒数", Toast.LENGTH_SHORT).show();
  96. return false;
  97. }
  98. } else if (v.getId() == R.id.btn_dot) { // 点击了小数点
  99. if (operator.equals("") && firstNum.contains(".")) { // 无运算符,则检查第一个操作数是否已有小数点
  100. Toast.makeText(this, "一个数字不能有两个小数点", Toast.LENGTH_SHORT).show();
  101. return false;
  102. }
  103. if (!operator.equals("") && secondNum.contains(".")) { // 有运算符,则检查第二个操作数是否已有小数点
  104. Toast.makeText(this, "一个数字不能有两个小数点", Toast.LENGTH_SHORT).show();
  105. return false;
  106. }
  107. }
  108. return true;
  109. }
  110. @Override
  111. public void onClick(View v)
  112. {
  113. if (!verify(v)) { // 未通过合法性校验,直接返回
  114. return;
  115. }
  116. String inputText;
  117. if (v.getId() == R.id.ib_sqrt) { // 如果是开根号按钮
  118. inputText = "√";
  119. } else { // 除了开根号之外的其他按钮
  120. inputText = ((TextView) v).getText().toString();
  121. }
  122. Log.d(TAG, "inputText=" + inputText);
  123. if (v.getId() == R.id.btn_clear) { // 点击了清除按钮
  124. clear();
  125. } else if (v.getId() == R.id.btn_cancel) { // 点击了取消按钮
  126. if (operator.equals("")) { // 无运算符,则表示逐位取消第一个操作数
  127. if (firstNum.length() == 1) {
  128. firstNum = "0";
  129. } else if (firstNum.length() > 1) {
  130. firstNum = firstNum.substring(0, firstNum.length() - 1);
  131. }
  132. refreshText(firstNum);
  133. } else { // 有运算符,则表示逐位取消第二个操作数
  134. if (secondNum.length() == 1) {
  135. secondNum = "";
  136. } else if (secondNum.length() > 1) {
  137. secondNum = secondNum.substring(0, secondNum.length() - 1);
  138. }
  139. refreshText(showText.substring(0, showText.length() - 1));
  140. }
  141. } else if (v.getId() == R.id.btn_plus || v.getId() == R.id.btn_minus // 点击了加、减、乘、除按钮
  142. || v.getId() == R.id.btn_multiply || v.getId() == R.id.btn_divide) {
  143. operator = inputText; // 运算符
  144. refreshText(showText + operator);
  145. } else if (v.getId() == R.id.btn_equal) { // 点击了等号按钮
  146. double calculate_result = calculateFour(); // 加减乘除四则运算
  147. refreshOperate(String.valueOf(calculate_result));
  148. refreshText(showText + "=" + result);
  149. } else if (v.getId() == R.id.ib_sqrt) { // 点击了开根号按钮
  150. double calculate_result = Math.sqrt(Double.parseDouble(firstNum)); // 开平方运算
  151. refreshOperate(String.valueOf(calculate_result));
  152. refreshText(showText + "√=" + result);
  153. } else if (v.getId() == R.id.btn_reciprocal) { // 点击了求倒数按钮
  154. double calculate_result = 1.0 / Double.parseDouble(firstNum); // 求倒数运算
  155. refreshOperate(String.valueOf(calculate_result));
  156. refreshText(showText + "/=" + result);
  157. } else { // 点击了其他按钮,包括数字和小数点
  158. if (result.length() > 0 && operator.equals("")) { // 上次的运算结果已经出来了
  159. clear();
  160. }
  161. if (operator.equals("")) { // 无运算符,则继续拼接第一个操作数
  162. firstNum = firstNum+inputText;
  163. } else { // 有运算符,则继续拼接第二个操作数
  164. secondNum = secondNum + inputText;
  165. }
  166. if (showText.equals("0") && !inputText.equals(".")) { // 整数不需要前面的0
  167. refreshText(inputText);
  168. } else {
  169. refreshText(showText + inputText);
  170. }
  171. }
  172. }
  173. // 刷新运算结果
  174. private void refreshOperate(String new_result)
  175. {
  176. result = new_result;
  177. firstNum = result;
  178. secondNum = "";
  179. operator = "";
  180. }
  181. // 刷新文本显示
  182. private void refreshText(String text)
  183. {
  184. showText = text;
  185. tv_result.setText(showText);
  186. }
  187. // 清空并初始化
  188. private void clear()
  189. {
  190. refreshOperate("");
  191. refreshText("");
  192. }
  193. // 加减乘除四则运算,返回计算结果
  194. private double calculateFour()
  195. {
  196. double calculate_result = 0;
  197. if (operator.equals("+")) { // 当前是相加运算
  198. calculate_result = Double.parseDouble(firstNum) + Double.parseDouble(secondNum);
  199. }
  200. else if (operator.equals("-")) { // 当前是相减运算
  201. calculate_result = Double.parseDouble(firstNum) - Double.parseDouble(secondNum);
  202. }
  203. else if (operator.equals("×")) { // 当前是相乘运算
  204. calculate_result = Double.parseDouble(firstNum) * Double.parseDouble(secondNum);
  205. }
  206. else if (operator.equals("÷")) { // 当前是相除运算
  207. calculate_result = Double.parseDouble(firstNum) / Double.parseDouble(secondNum);
  208. }
  209. Log.d(TAG, "calculate_result=" + calculate_result); // 把运算结果打印到日志中
  210. return calculate_result;
  211. }
  212. }

声明:本文内容由网友自发贡献,转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号