Android Studio创建简易计算器

本文介绍了如何在Android Studio上开发一个简单的计算器应用,具备加减乘除和清屏等功能。设计思路包括创建可视化界面,用户通过点击按钮输入数学表达式,最后按下等号键获取结果。代码中展示了XML布局文件和部分Java代码,用于实现计算器的功能。
摘要由CSDN通过智能技术生成

目的:
开发一个简单的计算器App,使之能够完成加减乘除混合运算工具及环境使用java语言,在Android studio平台上进行开发

功能设计:
“+”:实现两数相加
“-”:实现两数相减

“*”:实现两数相乘

“/”:实现两数相除

“=”:计算并得出正确结果

“AC”:清屏

“Del”:清除

 

设计思路:
首先设计一个可视化的界面,供用户输入数据并查看结果。用户可通过点击相应按钮输入正确的表达式,最后按"="得出正确结果。在计算过程中可以通过点击“Del”键修改输入内容,在进行下一次的运算之前必须先进行清零操作。计算器可以实现基础的整数和小数点的加减乘除运算,界面设计参考普通计算器,用LinearLayout布局实现界面排版。

 

代码:

Activity_main.xml

  1. <?xml version="1.0" encoding="utf-8"?>
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:orientation="vertical"
        android:layout_width="match_parent"
        android:layout_height="match_parent">
    
        <EditText
            android:id="@+id/result"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:textSize="40sp"
            android:enabled="false"/>
        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="0dp"
            android:layout_weight="1"
            android:orientation="horizontal">
    
            <Button
                android:id="@+id/cls"
                android:layout_width="0dp"
                android:layout_height="match_parent"
                android:layout_weight="1"
                android:textSize="20sp"
                android:text="AC"
                android:background="#3f3c3c"
                android:textColor="#ffffff"/>
            <Button
                android:id="@+id/Backspace"
                android:layout_width="0dp"
                android:layout_height="match_parent"
                android:layout_weight="1"
                android:textSize="20sp"
                android:text="Del"
                android:textAllCaps="false"
                android:background="#3f3c3c"
                android:textColor="#ffffff"/>
    
            <Button
                android:id="@+id/mul"
                android:layout_width="0dp"
                android:layout_height="match_parent"
                android:layout_weight="1"
                android:textSize="20sp"
                android:text="*"
                android:background="#666666"
                android:textColor="#ffffff"/>
            <Button
                android:id="@+id/div"
                android:layout_width="0dp"
                android:layout_height="match_parent"
                android:layout_weight="1"
                android:textSize="20sp"
                android:text="/"
                android:background="#666666"
                android:textColor="#ffffff"/>
    
    
        </LinearLayout>
    
        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="0dp"
            android:layout_weight="1"
            android:orientation="horizontal">
    
            <Button
                android:id="@+id/seven"
                android:layout_width="0dp"
                android:layout_height="match_parent"
                android:layout_weight="1"
                android:textSize="20sp"
                android:text="7"
                android:background="#666666"
                android:textColor="#ffffff"/>
            <Button
                android:id="@+id/eight"
                android:layout_width="0dp"
                android:layout_height="match_parent"
                android:layout_weight="1"
                android:textSize="20sp"
                android:text="8"
                android:background="#666666"
                android:textColor="#ffffff"/>
            <Button
                android:id="@+id/nine"
                android:layout_width="0dp"
                android:layout_height="match_parent"
                android:layout_weight="1"
                android:textSize="20sp"
                android:text="9"
                android:background="#666666"
                android:textColor="#ffffff"/>
            <Button
                android:id="@+id/sub"
                android:layout_width="0dp"
                android:layout_height="match_parent"
                android:layout_weight="1"
                android:textSize="20sp"
                android:text="-"
                android:background="#666666"
                android:textColor="#ffffff"/>
        </LinearLayout>
    
        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="0dp"
            android:layout_weight="1"
            android:orientation="horizontal">
    
            <Button
                android:id="@+id/four"
                android:layout_width="0dp"
                android:layout_height="match_parent"
                android:layout_weight="1"
                android:textSize="20sp"
                android:text="4"
                android:background="#666666"
                android:textColor="#ffffff"/>
            <Button
                android:id="@+id/five"
                android:layout_width="0dp"
                android:layout_height="match_parent"
                android:layout_weight="1"
                android:textSize="20sp"
                android:text="5"
                android:background="#666666"
                android:textColor="#ffffff"/>
            <Button
                android:id="@+id/six"
                android:layout_width="0dp"
                android:layout_height="match_parent"
                android:layout_weight="1"
                android:textSize="20sp"
                android:text="6"
                android:background="#666666"
                android:textColor="#ffffff"/>
            <Button
                android:id="@+id/add"
                android:layout_width="0dp"
                android:layout_height="match_parent"
                android:layout_weight="1"
                android:textSize="20sp"
                android:text="+"
                android:background="#666666"
                android:textColor="#ffffff"/>
        </LinearLayout>
    
        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="0dp"
            android:layout_weight="2"
            android:orientation="horizontal">
    
            <LinearLayout
                android:layout_width="0dp"
                android:layout_height&
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值