没有合适的资源?快使用搜索试试~ 我知道了~
Android Studio实现简单计算器APP
1.该资源内容由用户上传,如若侵权请联系客服进行举报
2.虚拟产品一经售出概不退款(资源遇到问题,请及时私信上传者)
2.虚拟产品一经售出概不退款(资源遇到问题,请及时私信上传者)
版权申诉
5星 · 超过95%的资源 6 下载量 109 浏览量
2021-01-03
12:38:06
上传
评论 2
收藏 226KB PDF 举报
温馨提示
一、简介:用Android Studio 实现一个简单的计算器APP,并在蓝叠模拟器中运行。 该计算器只能实现两位数字的四则运算。 二、代码 activity_main.xml —界面设计 <?xml version=1.0 encoding=utf-8?> <GridLayout xmlns:android=http://schemas.android.com/apk/res/android xmlns:tools=http://schemas.android.com/tools android:layout_width=match_parent androi
资源推荐
资源详情
资源评论
Android Studio实现简单计算器实现简单计算器APP
一、简介:一、简介:用Android Studio 实现一个简单的计算器APP,并在蓝叠模拟器中运行。
该计算器只能实现两位数字的四则运算。
二、代码二、代码
activity_main.xml —界面设计
<?xml version="1.0" encoding="utf-8"?>
<GridLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@+id/textView"
android:layout_alignParentStart="true"
android:rowCount="6"
android:columnCount="4"
> <!--设置网格为6行4列-->
<!--显示文本组件,占1行4列-->
<TextView
android:id="@+id/text"
android:layout_width="350dp"
android:layout_height="wrap_content"
android:layout_columnSpan="4"
android:layout_marginLeft="4px"
android:gravity="left"
android:textSize="50dp" />
<!--清除按钮,占1行4列-->
<Button
android:id="@+id/btnClear"
android:layout_width="353dp"
android:layout_height="wrap_content"
android:layout_columnSpan="4"
android:text="清除"
android:textSize="26sp" />
<!--以下按钮为数字按钮和函数按钮,每个占1行1列-->
<Button
android:id="@+id/btn1"
android:text="1"
android:textSize="26sp" />
<Button
android:id="@+id/btn2"
android:text="2"
android:textSize="26sp" />
<Button
android:id="@+id/btn3"
android:text="3"
android:textSize="26sp" />
<Button
android:id="@+id/btnPlus"
android:text="+"
android:textSize="26sp" />
<Button
android:id="@+id/btn4"
android:text="4"
android:textSize="26sp" />
<Button
android:id="@+id/btn5"
android:text="5"
android:textSize="26sp" />
<Button
android:id="@+id/btn6"
android:text="6"
android:textSize="26sp" />
<Button
android:id="@+id/btnSubtract"
android:text="-"
android:textSize="26sp" />
<Button
android:id="@+id/btn7"
android:text="7"
android:textSize="26sp" />
<Button
android:id="@+id/btn8"
android:text="8"
android:textSize="26sp" />
<Button
android:id="@+id/btn9"
android:text="9"
android:textSize="26sp" />
<Button
android:id="@+id/btnMultiply"
android:text="*"
android:textSize="26sp" />
<Button
android:id="@+id/btnPoint"
android:text="."
android:textSize="26sp" />
<Button
android:id="@+id/btn0"
android:text="0"
android:textSize="26sp" />
<Button
android:id="@+id/btnSum"
android:text="="
android:textSize="26sp" />
<Button
android:id="@+id/btnDivide"
android:text="/"
android:textSize="26sp" />
</GridLayout>
界面:
剩余6页未读,继续阅读
资源评论
- suxiaolong6666662022-11-19这个资源对我启发很大,受益匪浅,学到了很多,谢谢分享~
- 2401_861130742024-07-08感谢资源主的分享,这个资源对我来说很有用,内容描述详尽,值得借鉴。
weixin_38655284
- 粉丝: 7
- 资源: 930
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
- C#物联订单仓储综合管理系统源码 物联综合管理系统源码数据库 SQL2008源码类型 WebForm
- 2024年最新敏感词库(7万余条)
- java带财务进销存ERP管理系统源码数据库 MySQL源码类型 WebForm
- java制造业MES生产管理系统源码 MES源码数据库 MySQL源码类型 WebForm
- 基于无人机航拍数据实现的三维场景重建python源代码+文档说明+数据集(高分项目)
- 【重磅,更新!】全国2000-2022年植被指数数据(分辨率30m)
- 包含Qt5Core.dll Qt5Gui.dll Qt5Network.dll Qt5Svg.dll Qt5Widgets.dl
- python3.6 get-pip.py
- python期末大作业基于ResNet的人脸表情识别项目源码+数据集+模型文件(高分项目)
- C#大型多门店4S连锁汽车维修保养管理系统源码(带文档)数据库 SQL2008源码类型 WebForm
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功