当前位置:   article > 正文

Android Studio App开发实战项目之计算器的开发及演示(附源码和演示视频,超详细,可直接使用)_android studio项目源码

android studio项目源码

演示视频如下 需要源码请点赞关注收藏后评论区留言~~~ 

Android App开发计算器演示

计算器是人们日常生活中最常用的工具之一,无论在电脑上还是手机上,都少不了计算器的身影。

界面设计

界面由计算结果和计算按钮两部分组成   效果如下

 

根据计算器App的效果图 可以得出大致分布着下列Android控件

线性布局LinearLayout

网格布局GridLayout

滚动视图ScrollView

文本视图TextView

按钮Button

图像按钮ImageButton

 关键部分

1:输入按键的合法性校验

App同用户交互的 过程中,时常要想用户反馈一些信息,例如点错了按钮,输入了非法字符和不合数学规则的运算等等 对于这些一句话的提示。Android设计了Toast控件,用于展示短暂的提示文字,Toast的用法很简单 只需以下一行代码

Toast.makeText(MainActivity.this,"提示文字",Toast.Length_SHORT).show();

 上面代码用到了两个方法,分别是makeText和show,show方法用来展示提示窗,makeText方法用来构建提示文字的模板。

对于计算器来说,有好几种情况需要提示用户,比如除数不能为零,开根号的数值不能小于零,不能对零求导数等等。这时就能通过Toast控件弹窗提醒用户 效果如下

 2:执行运算并显示计算结果

合法性校验通过,方能继续接下来的业务逻辑,倘若用户本次未输入与计算有关的按钮,则计算器只需拼接操作数或者运算符,倘若用户本次输入了与计算有关的按钮,则计算器立即执行运算操作并显示计算结果。 效果如下

 

 部分源码如下

CalculatorActivity类代码如下

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

activity_calculatorXML文件代码如下

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

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

闽ICP备14008679号