android简易计算器的制作
程序员文章站
2022-07-09 15:14:35
之前有好好完成老师留过的c++大作业,使用mfc制作通讯录。所以用as写一个安卓的计算器并不是很难,但还是想上手操作一下,写一个只有简单加减乘除运算的小计算器,后面可能会考虑加一些其他的稍微复杂的计算...
之前有好好完成老师留过的c++大作业,使用mfc制作通讯录。所以用as写一个安卓的计算器并不是很难,但还是想上手操作一下,写一个只有简单加减乘除运算的小计算器,后面可能会考虑加一些其他的稍微复杂的计算功能。下面是步骤。
1.首先创建一个empty activity,取名为mystudycalculator。
2.打开activity_main.xml文件,创建两个编辑框(edittext)、四个按钮(button)、一个文本框(textview),并设置相应的id。其中编辑框作用是让用户填入两个数字,四个按钮分别对应四种不同的运算(需要对按钮分别添加响应事件),文本框用于显示运算结果。我另外添加了两个文本框,一个用于显示标题,一个显示作者,对于该计算器来说没有任何作用。下面给出代码:
//第一个数字 <edittext android:id="@+id/first" android:layout_width="85dp" android:layout_height="wrap_content" android:layout_marginend="56dp" android:layout_marginstart="8dp" android:layout_margintop="168dp" android:hint="@string/num1" app:layout_constraintend_tostartof="@+id/second" app:layout_constrainthorizontal_bias="0.621" app:layout_constraintstart_tostartof="parent" app:layout_constrainttop_totopof="parent" /> //第二个数字 <edittext android:id="@+id/second" android:layout_width="85dp" android:layout_height="wrap_content" android:layout_marginend="64dp" android:layout_margintop="168dp" android:hint="@string/num2" app:layout_constraintend_toendof="parent" app:layout_constrainttop_totopof="parent" /> //第二个数字 <textview android:id="@+id/res" android:layout_width="96dp" android:layout_height="33dp" android:layout_marginbottom="84dp" android:layout_marginend="8dp" android:layout_marginstart="8dp" android:gravity="center" app:layout_constraintbottom_tobottomof="parent" app:layout_constraintend_toendof="parent" app:layout_constrainthorizontal_bias="0.481" app:layout_constraintstart_tostartof="parent" /> //加法按钮 <button android:id="@+id/button1" android:layout_width="50dp" android:layout_height="50dp" android:layout_marginend="8dp" android:layout_marginstart="8dp" android:layout_margintop="260dp" android:onclick="sum" android:text="+" app:layout_constraintend_toendof="parent" app:layout_constrainthorizontal_bias="0.391" app:layout_constraintstart_tostartof="parent" app:layout_constrainttop_totopof="parent" /> //减法按钮 <button android:id="@+id/button2" android:layout_width="50dp" android:layout_height="50dp" android:layout_marginbottom="30dp" android:layout_marginend="148dp" android:layout_margintop="8dp" android:onclick="sub" android:text="-" app:layout_constraintbottom_tobottomof="parent" app:layout_constraintend_toendof="parent" app:layout_constrainttop_totopof="parent" app:layout_constraintvertical_bias="0.595" /> //乘法按钮 <button android:id="@+id/button3" android:layout_width="50dp" android:layout_height="50dp" android:layout_marginbottom="152dp" android:layout_marginend="8dp" android:layout_marginstart="8dp" android:onclick="mul" android:text="*" app:layout_constraintbottom_tobottomof="parent" app:layout_constraintend_toendof="parent" app:layout_constrainthorizontal_bias="0.393" app:layout_constraintstart_tostartof="parent" /> //除法按钮 <button android:id="@+id/button4" android:layout_width="50dp" android:layout_height="50dp" android:layout_marginbottom="8dp" android:layout_marginend="148dp" android:layout_margintop="8dp" android:onclick="div" android:text="/" app:layout_constraintbottom_tobottomof="parent" app:layout_constraintend_toendof="parent" app:layout_constrainttop_totopof="parent" app:layout_constraintvertical_bias="0.678" /> //标题 <textview android:id="@+id/textview2" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginend="8dp" android:layout_marginstart="8dp" android:layout_margintop="36dp" android:text="丑陋的而且只能算加减乘除的计算机" android:textsize="20dp" app:layout_constraintend_toendof="parent" app:layout_constraintstart_tostartof="parent" app:layout_constrainttop_totopof="parent" /> //作者 <textview android:id="@+id/textview3" android:layout_width="wrap_content" android:layout_height="11dp" android:layout_marginend="8dp" android:layout_marginstart="8dp" android:layout_margintop="496dp" android:text="timberwolf" android:textsize="10dp" app:layout_constraintend_toendof="parent" app:layout_constrainthorizontal_bias="0.99" app:layout_constraintstart_tostartof="parent" app:layout_constrainttop_totopof="parent" />
3.打开mainactivity.java写四个按钮对应的方法,代码如下:
//加法 public void sum(view view) { edittext first = (edittext)findviewbyid(r.id.first); edittext second = (edittext)findviewbyid(r.id.second); textview res = (textview)findviewbyid(r.id.res); double num1 = 0; double num2 = 0; double ans = 0; string numfirst = first.gettext().tostring(); string numsecond = second.gettext().tostring(); num1 = double.parsedouble(numfirst); num2 = double.parsedouble(numsecond); ans = num1 + num2; res.settext(string.valueof(ans)); } //减法 public void sub(view view) { edittext first = (edittext)findviewbyid(r.id.first); edittext second = (edittext)findviewbyid(r.id.second); textview res = (textview)findviewbyid(r.id.res); double num1 = 0; double num2 = 0; double ans = 0; string numfirst = first.gettext().tostring(); string numsecond = second.gettext().tostring(); num1 = double.parsedouble(numfirst); num2 = double.parsedouble(numsecond); ans = num1 - num2; res.settext(string.valueof(ans)); } //乘法 public void mul(view view) { edittext first = (edittext)findviewbyid(r.id.first); edittext second = (edittext)findviewbyid(r.id.second); textview res = (textview)findviewbyid(r.id.res); double num1 = 0; double num2 = 0; double ans = 0; string numfirst = first.gettext().tostring(); string numsecond = second.gettext().tostring(); num1 = double.parsedouble(numfirst); num2 = double.parsedouble(numsecond); ans = num1 * num2; res.settext(string.valueof(ans)); } //除法 public void div(view view) { edittext first = (edittext)findviewbyid(r.id.first); edittext second = (edittext)findviewbyid(r.id.second); textview res = (textview)findviewbyid(r.id.res); double num1 = 0; double num2 = 0; double ans = 0; string numfirst = first.gettext().tostring(); string numsecond = second.gettext().tostring(); num1 = double.parsedouble(numfirst); num2 = double.parsedouble(numsecond); ans = num1 / num2; res.settext(string.valueof(ans)); }
4.看似代码很长,其实都是一样的,很简单就完成了,其中mainactivity.java中的代码我没有给出注释,就是几种类型的转换。欢迎大佬指点,初学者不懂的可以给我留言。下面给出仿真机运行效果。
更多计算器功能实现,请点击专题: 计算器功能汇总 进行学习
关于android计算器功能的实现,查看专题:android计算器 进行学习。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
上一篇: java调用回调机制详解
下一篇: 从优信二手车疯狂*式广告谈品牌营销