帮我用androidStudio写一个简单计算器页面和代码

时间: 2024-01-22 07:18:43 浏览: 85
PDF

Android Studio实现简单计算器APP

好的,下面是一个简单的计算器页面和代码示例: 1. 首先,在Android Studio中创建一个新项目,选择Empty Activity。 2. 打开activity_main.xml文件,将以下代码复制并粘贴到文件中: ```xml <?xml version="1.0" encoding="utf-8"?> <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" tools:context=".MainActivity"> <TextView android:id="@+id/resultTextView" android:layout_width="0dp" android:layout_height="wrap_content" android:layout_marginTop="16dp" android:layout_marginBottom="16dp" android:text="0" android:textAlignment="center" android:textSize="30sp" app:layout_constraintBottom_toTopOf="@+id/guideline2" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintHorizontal_bias="0.0" app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toTopOf="@+id/guideline" app:layout_constraintVertical_bias="0.0" /> <Button android:id="@+id/clearButton" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginStart="16dp" android:layout_marginTop="16dp" android:layout_marginEnd="16dp" android:backgroundTint="#FF0000" android:text="C" app:layout_constraintEnd_toStartOf="@+id/divideButton" app:layout_constraintHorizontal_bias="0.5" app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toBottomOf="@+id/resultTextView" /> <Button android:id="@+id/divideButton" android:layout_width="0dp" android:layout_height="wrap_content" android:layout_marginStart="8dp" android:layout_marginTop="16dp" android:layout_marginEnd="8dp" android:text="/" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintHorizontal_bias="0.5" app:layout_constraintStart_toEndOf="@+id/clearButton" app:layout_constraintTop_toBottomOf="@+id/resultTextView" /> <Button android:id="@+id/multiplyButton" android:layout_width="0dp" android:layout_height="wrap_content" android:layout_marginStart="8dp" android:layout_marginTop="16dp" android:layout_marginEnd="8dp" android:text="*" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintHorizontal_bias="0.5" app:layout_constraintStart_toEndOf="@+id/divideButton" app:layout_constraintTop_toBottomOf="@+id/resultTextView" /> <Button android:id="@+id/minusButton" android:layout_width="0dp" android:layout_height="wrap_content" android:layout_marginStart="8dp" android:layout_marginTop="16dp" android:layout_marginEnd="8dp" android:text="-" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintHorizontal_bias="0.5" app:layout_constraintStart_toEndOf="@+id/multiplyButton" app:layout_constraintTop_toBottomOf="@+id/resultTextView" /> <Button android:id="@+id/plusButton" android:layout_width="0dp" android:layout_height="wrap_content" android:layout_marginStart="8dp" android:layout_marginTop="16dp" android:layout_marginEnd="8dp" android:text="+" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintHorizontal_bias="0.5" app:layout_constraintStart_toEndOf="@+id/minusButton" app:layout_constraintTop_toBottomOf="@+id/resultTextView" /> <Button android:id="@+id/equalButton" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginStart="16dp" android:layout_marginTop="16dp" android:layout_marginEnd="16dp" android:backgroundTint="#00FF00" android:text="=" app:layout_constraintEnd_toStartOf="@+id/plusButton" app:layout_constraintHorizontal_bias="0.5" app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toBottomOf="@+id/divideButton" /> <Button android:id="@+id/dotButton" android:layout_width="0dp" android:layout_height="wrap_content" android:layout_marginStart="8dp" android:layout_marginTop="16dp" android:layout_marginEnd="8dp" android:text="." app:layout_constraintEnd_toEndOf="parent" app:layout_constraintHorizontal_bias="0.5" app:layout_constraintStart_toEndOf="@+id/equalButton" app:layout_constraintTop_toBottomOf="@+id/divideButton" /> <Button android:id="@+id/zeroButton" android:layout_width="0dp" android:layout_height="wrap_content" android:layout_marginStart="8dp" android:layout_marginTop="16dp" android:layout_marginEnd="8dp" android:text="0" app:layout_constraintEnd_toStartOf="@+id/dotButton" app:layout_constraintHorizontal_bias="0.5" app:layout_constraintStart_toEndOf="@+id/equalButton" app:layout_constraintTop_toBottomOf="@+id/divideButton" /> <Button android:id="@+id/oneButton" android:layout_width="0dp" android:layout_height="wrap_content" android:layout_marginStart="8dp" android:layout_marginTop="16dp" android:layout_marginEnd="8dp" android:text="1" app:layout_constraintEnd_toStartOf="@+id/twoButton" app:layout_constraintHorizontal_bias="0.5" app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toBottomOf="@+id/equalButton" /> <Button android:id="@+id/twoButton" android:layout_width="0dp" android:layout_height="wrap_content" android:layout_marginStart="8dp" android:layout_marginTop="16dp" android:layout_marginEnd="8dp" android:text="2" app:layout_constraintEnd_toStartOf="@+id/threeButton" app:layout_constraintHorizontal_bias="0.5" app:layout_constraintStart_toEndOf="@+id/oneButton" app:layout_constraintTop_toBottomOf="@+id/equalButton" /> <Button android:id="@+id/threeButton" android:layout_width="0dp" android:layout_height="wrap_content" android:layout_marginStart="8dp" android:layout_marginTop="16dp" android:layout_marginEnd="8dp" android:text="3" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintHorizontal_bias="0.5" app:layout_constraintStart_toEndOf="@+id/twoButton" app:layout_constraintTop_toBottomOf="@+id/equalButton" /> <Button android:id="@+id/fourButton" android:layout_width="0dp" android:layout_height="wrap_content" android:layout_marginStart="8dp" android:layout_marginTop="16dp" android:layout_marginEnd="8dp" android:text="4" app:layout_constraintEnd_toStartOf="@+id/fiveButton" app:layout_constraintHorizontal_bias="0.5" app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toBottomOf="@+id/oneButton" /> <Button android:id="@+id/fiveButton" android:layout_width="0dp" android:layout_height="wrap_content" android:layout_marginStart="8dp" android:layout_marginTop="16dp" android:layout_marginEnd="8dp" android:text="5" app:layout_constraintEnd_toStartOf="@+id/sixButton" app:layout_constraintHorizontal_bias="0.5" app:layout_constraintStart_toEndOf="@+id/fourButton" app:layout_constraintTop_toBottomOf="@+id/twoButton" /> <Button android:id="@+id/sixButton" android:layout_width="0dp" android:layout_height="wrap_content" android:layout_marginStart="8dp" android:layout_marginTop="16dp" android:layout_marginEnd="8dp" android:text="6" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintHorizontal_bias="0.5" app:layout_constraintStart_toEndOf="@+id/fiveButton" app:layout_constraintTop_toBottomOf="@+id/threeButton" /> <Button android:id="@+id/sevenButton" android:layout_width="0dp" android:layout_height="wrap_content" android:layout_marginStart="8dp" android:layout_marginTop="16dp" android:layout_marginEnd="8dp" android:text="7" app:layout_constraintEnd_toStartOf="@+id/eightButton" app:layout_constraintHorizontal_bias="0.5" app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toBottomOf="@+id/fourButton" /> <Button android:id="@+id/eightButton" android:layout_width="0dp" android:layout_height="wrap_content" android:layout_marginStart="8dp" android:layout_marginTop="16dp" android:layout_marginEnd="8dp" android:text="8" app:layout_constraintEnd_toStartOf="@+id/nineButton" app:layout_constraintHorizontal_bias="0.5" app:layout_constraintStart_toEndOf="@+id/sevenButton" app:layout_constraintTop_toBottomOf="@+id/fiveButton" /> <Button android:id="@+id/nineButton" android:layout_width="0dp" android:layout_height="wrap_content" android:layout_marginStart="8dp" android:layout_marginTop="16dp" android:layout_marginEnd="8dp" android:text="9" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintHorizontal_bias="0.5" app:layout_constraintStart_toEndOf="@+id/eightButton" app:layout_constraintTop_toBottomOf="@+id/sixButton" /> <androidx.constraintlayout.widget.Guideline android:id="@+id/guideline" android:layout_width="wrap_content" android:layout_height="wrap_content" android:orientation="horizontal" app:layout_constraintGuide_begin="64dp" /> <androidx.constraintlayout.widget.Guideline android:id="@+id/guideline2" android:layout_width="wrap_content" android:layout_height="wrap_content" android:orientation="horizontal" app:layout_constraintGuide_begin="312dp" /> </androidx.constraintlayout.widget.ConstraintLayout> ``` 3. 打开MainActivity.java文件,将以下代码复制并粘贴到文件中: ```java import androidx.appcompat.app.AppCompatActivity; import android.os.Bundle; import android.view.View; import android.widget.Button; import android.widget.TextView; public class MainActivity extends AppCompatActivity { private TextView resultTextView; private String display = ""; private double num1 = 0; private double num2 = 0; private char operation; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); resultTextView = findViewById(R.id.resultTextView); Button clearButton = findViewById(R.id.clearButton); clearButton.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { display = ""; num1 = 0; num2 = 0; operation = ' '; resultTextView.setText("0"); } }); Button divideButton = findViewById(R.id.divideButton); divideButton.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { operation = '/'; num1 = Double.parseDouble(display); display = ""; } }); Button multiplyButton = findViewById(R.id.multiplyButton); multiplyButton.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { operation = '*'; num1 = Double.parseDouble(display); display = ""; } }); Button minusButton = findViewById(R.id.minusButton); minusButton.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { operation = '-'; num1 = Double.parseDouble(display); display = ""; } }); Button plusButton = findViewById(R.id.plusButton); plusButton.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { operation = '+'; num1 = Double.parseDouble(display); display = ""; } }); Button equalButton = findViewById(R.id.equalButton); equalButton.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { num2 = Double.parseDouble(display); double result = 0; switch (operation) { case '/': if (num2 == 0) { resultTextView.setText("Error"); } else { result = num1 / num2; resultTextView.setText(String.valueOf(result)); } break; case '*': result = num1 * num2; resultTextView.setText(String.valueOf(result)); break; case '-': result = num1 - num2; resultTextView.setText(String.valueOf(result)); break; case '+': result = num1 + num2; resultTextView.setText(String.valueOf(result)); break; } } }); Button dotButton = findViewById(R.id.dotButton); dotButton.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { if (!display.contains(".")) { display += "."; resultTextView.setText(display); } } }); Button zeroButton = findViewById(R.id.zeroButton); zeroButton.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { display += "0"; resultTextView.setText(display); } }); Button oneButton = findViewById(R.id.oneButton); oneButton.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { display += "1"; resultTextView.setText(display); } }); Button twoButton = findViewById(R.id.twoButton); twoButton.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { display += "2"; resultTextView.setText(display); } }); Button threeButton = findViewById(R.id.threeButton); threeButton.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { display += "3"; resultTextView.setText(display); } }); Button fourButton = findViewById(R.id.fourButton); fourButton.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { display += "4"; resultTextView.setText(display); } }); Button fiveButton = findViewById(R.id.fiveButton); fiveButton.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { display += "5"; resultTextView.setText(display); } }); Button sixButton = findViewById(R.id.sixButton); sixButton.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { display += "6"; resultTextView.setText(display); } }); Button sevenButton = findViewById(R.id.sevenButton); sevenButton.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { display += "7"; resultTextView.setText(display); } }); Button eightButton = findViewById(R.id.eightButton); eightButton.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { display += "8"; resultTextView.setText(display); } }); Button nineButton = findViewById(R.id.nineButton); nineButton.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { display += "9"; resultTextView.setText(display); } }); } } ``` 4. 运行应用程序,您现在可以在模拟器或设备上测试它了。
阅读全文

相关推荐

最新推荐

recommend-type

ta-lib-0.5.1-cp312-cp312-win32.whl

ta_lib-0.5.1-cp312-cp312-win32.whl
recommend-type

在线实时的斗兽棋游戏,时间赶,粗暴的使用jQuery + websoket 实现实时H5对战游戏 + java.zip课程设计

课程设计 在线实时的斗兽棋游戏,时间赶,粗暴的使用jQuery + websoket 实现实时H5对战游戏 + java.zip课程设计
recommend-type

ta-lib-0.5.1-cp310-cp310-win-amd64.whl

ta_lib-0.5.1-cp310-cp310-win_amd64.whl
recommend-type

基于springboot+vue物流系统源码数据库文档.zip

基于springboot+vue物流系统源码数据库文档.zip
recommend-type

ERA5_Climate_Moisture_Index.txt

GEE训练教程——Landsat5、8和Sentinel-2、DEM和各2哦想指数下载
recommend-type

MATLAB实现小波阈值去噪:Visushrink硬软算法对比

资源摘要信息:"本资源提供了一套基于MATLAB实现的小波阈值去噪算法代码。用户可以通过运行主文件"project.m"来执行该去噪算法,并观察到对一张256x256像素的黑白“莱娜”图片进行去噪的全过程。此算法包括了添加AWGN(加性高斯白噪声)的过程,并展示了通过Visushrink硬阈值和软阈值方法对图像去噪的对比结果。此外,该实现还包括了对图像信噪比(SNR)的计算以及将噪声图像和去噪后的图像的打印输出。Visushrink算法的参考代码由M.Kiran Kumar提供,可以在Mathworks网站上找到。去噪过程中涉及到的Lipschitz指数计算,是基于Venkatakrishnan等人的研究,使用小波变换模量极大值(WTMM)的方法来测量。" 知识点详细说明: 1. MATLAB环境使用:本代码要求用户在MATLAB环境下运行。MATLAB是一种高性能的数值计算和可视化环境,广泛应用于工程计算、算法开发和数据分析等领域。 2. 小波阈值去噪:小波去噪是信号处理中的一个技术,用于从信号中去除噪声。该技术利用小波变换将信号分解到不同尺度的子带,然后根据信号与噪声在小波域中的特性差异,通过设置阈值来消除或减少噪声成分。 3. Visushrink算法:Visushrink算法是一种小波阈值去噪方法,由Donoho和Johnstone提出。该算法的硬阈值和软阈值是两种不同的阈值处理策略,硬阈值会将小波系数小于阈值的部分置零,而软阈值则会将这部分系数缩减到零。硬阈值去噪后的信号可能有更多震荡,而软阈值去噪后的信号更为平滑。 4. AWGN(加性高斯白噪声)添加:在模拟真实信号处理场景时,通常需要对原始信号添加噪声。AWGN是一种常见且广泛使用的噪声模型,它假设噪声是均值为零、方差为N0/2的高斯分布,并且与信号不相关。 5. 图像处理:该实现包含了图像处理的相关知识,包括图像的读取、显示和噪声添加。此外,还涉及了图像去噪前后视觉效果的对比展示。 6. 信噪比(SNR)计算:信噪比是衡量信号质量的一个重要指标,反映了信号中有效信息与噪声的比例。在图像去噪的过程中,通常会计算并比较去噪前后图像的SNR值,以评估去噪效果。 7. Lipschitz指数计算:Lipschitz指数是衡量信号局部变化复杂性的一个量度,通常用于描述信号在某个尺度下的变化规律。在小波去噪过程中,Lipschitz指数可用于确定是否保留某个小波系数,因为它与信号的奇异性相关联。 8. WTMM(小波变换模量极大值):小波变换模量极大值方法是一种小波分析技术,用于检测信号中的奇异点或边缘。该技术通过寻找小波系数模量极大值的变化来推断信号的局部特征。 9. 系统开源:该资源被标记为“系统开源”,意味着该MATLAB代码及其相关文件是可以公开访问和自由使用的。开源资源为研究人员和开发者提供了学习和实验的机会,有助于知识共享和技术发展。 资源的文件结构包括"Wavelet-Based-Denoising-MATLAB-Code-master",表明用户获取的是一套完整的项目文件夹,其中包含了执行小波去噪算法所需的所有相关文件和脚本。
recommend-type

管理建模和仿真的文件

管理Boualem Benatallah引用此版本:布阿利姆·贝纳塔拉。管理建模和仿真。约瑟夫-傅立叶大学-格勒诺布尔第一大学,1996年。法语。NNT:电话:00345357HAL ID:电话:00345357https://theses.hal.science/tel-003453572008年12月9日提交HAL是一个多学科的开放存取档案馆,用于存放和传播科学研究论文,无论它们是否被公开。论文可以来自法国或国外的教学和研究机构,也可以来自公共或私人研究中心。L’archive ouverte pluridisciplinaire
recommend-type

【交互特征的影响】:分类问题中的深入探讨,如何正确应用交互特征

![【交互特征的影响】:分类问题中的深入探讨,如何正确应用交互特征](https://img-blog.csdnimg.cn/img_convert/21b6bb90fa40d2020de35150fc359908.png) # 1. 交互特征在分类问题中的重要性 在当今的机器学习领域,分类问题一直占据着核心地位。理解并有效利用数据中的交互特征对于提高分类模型的性能至关重要。本章将介绍交互特征在分类问题中的基础重要性,以及为什么它们在现代数据科学中变得越来越不可或缺。 ## 1.1 交互特征在模型性能中的作用 交互特征能够捕捉到数据中的非线性关系,这对于模型理解和预测复杂模式至关重要。例如
recommend-type

c语言从链式队列 中获取头部元素并返回其状态的函数怎么写

在 C 语言中,如果你有一个链式队列的数据结构,通常它会包含两个指针,一个指向队首(front),一个指向队尾(rear)。以下是一个简单的链式队列头部元素获取函数的示例,假设 `Queue` 是你的链式队列结构体,并且已经包含了必要的成员变量: ```c typedef struct Queue { void* data; // 存储数据的指针 struct Queue* front; // 队首指针 struct Queue* rear; // 队尾指针 } Queue; // 获取头部元素并检查是否为空(如果队列为空,返回 NULL 或适当错误值) void*
recommend-type

易语言实现画板图像缩放功能教程

资源摘要信息:"易语言是一种基于中文的编程语言,主要面向中文用户,其特点是使用中文关键词和语法结构,使得中文使用者更容易理解和编写程序。易语言画板图像缩放源码是易语言编写的程序代码,用于实现图形用户界面中的画板组件上图像的缩放功能。通过这个源码,用户可以调整画板上图像的大小,从而满足不同的显示需求。它可能涉及到的图形处理技术包括图像的获取、缩放算法的实现以及图像的重新绘制等。缩放算法通常可以分为两大类:高质量算法和快速算法。高质量算法如双线性插值和双三次插值,这些算法在图像缩放时能够保持图像的清晰度和细节。快速算法如最近邻插值和快速放大技术,这些方法在处理速度上更快,但可能会牺牲一些图像质量。根据描述和标签,可以推测该源码主要面向图形图像处理爱好者或专业人员,目的是提供一种方便易用的方法来实现图像缩放功能。由于源码文件名称为'画板图像缩放.e',可以推断该文件是一个易语言项目文件,其中包含画板组件和图像处理的相关编程代码。" 易语言作为一种编程语言,其核心特点包括: 1. 中文编程:使用中文作为编程关键字,降低了学习编程的门槛,使得不熟悉英文的用户也能够编写程序。 2. 面向对象:易语言支持面向对象编程(OOP),这是一种编程范式,它使用对象及其接口来设计程序,以提高软件的重用性和模块化。 3. 组件丰富:易语言提供了丰富的组件库,用户可以通过拖放的方式快速搭建图形用户界面。 4. 简单易学:由于语法简单直观,易语言非常适合初学者学习,同时也能够满足专业人士对快速开发的需求。 5. 开发环境:易语言提供了集成开发环境(IDE),其中包含了代码编辑器、调试器以及一系列辅助开发工具。 6. 跨平台:易语言支持在多个操作系统平台编译和运行程序,如Windows、Linux等。 7. 社区支持:易语言有着庞大的用户和开发社区,社区中有很多共享的资源和代码库,便于用户学习和解决编程中遇到的问题。 在处理图形图像方面,易语言能够: 1. 图像文件读写:支持常见的图像文件格式如JPEG、PNG、BMP等的读取和保存。 2. 图像处理功能:包括图像缩放、旋转、裁剪、颜色调整、滤镜效果等基本图像处理操作。 3. 图形绘制:易语言提供了丰富的绘图功能,包括直线、矩形、圆形、多边形等基本图形的绘制,以及文字的输出。 4. 图像缩放算法:易语言实现的画板图像缩放功能中可能使用了特定的缩放算法来优化图像的显示效果和性能。 易语言画板图像缩放源码的实现可能涉及到以下几个方面: 1. 获取画板上的图像:首先需要从画板组件中获取到用户当前绘制或已经存在的图像数据。 2. 图像缩放算法的应用:根据用户的需求,应用适当的图像缩放算法对获取的图像数据进行处理。 3. 图像重新绘制:处理后的图像数据需要重新绘制到画板上,以实现缩放后的效果。 4. 用户交互:提供用户界面,让用户能够通过按钮、滑块等控件选择缩放比例和模式,以及触发缩放操作。 5. 性能优化:为了确保图像缩放操作流畅,需要考虑代码的执行效率和资源的合理利用。 在易语言社区中,用户可以根据自己的需求修改和扩展画板图像缩放源码,或者根据提供的API进一步开发更多高级图像处理功能,从而丰富软件的功能和用户体验。