Android Studio实现简易计算器(表格布局TableLayout)

这是一个运用网格布局来做的简易计算器,可能没有那么美观,大家可以继续完善

首先先看看成果吧

首先先建一个新的Project Calculator
然后先编写颜色背景文件
创建一个gray.xml,哪里创建呢?如图
在drawable下右击,选择new–Drawable resource file

第一个是文件名字,第二个属性可以自己选择,我们这里前两个文件选择shape,第三个文件选selector,附上颜色背景代码

gray.xml

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">

 <corners android:radius="5dp"/>
 <solid android:color="#f9f9f9"/>
 <stroke
 android:width="2dp"
 android:color="#ffa600"/>
</shape>

orange.xml

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
 <corners android:radius="5dp"/>  // 圆角
 <solid android:color="#F7B684"/>  //颜色
</shape>

white.xml

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">

 <corners android:radius="5dp"/>
 <solid android:color="#ffffff"/>
 <stroke
 android:width="1dp"
 android:color="#ffa600"/>

</shape>

change.xml

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">

 <item android:drawable="@drawable/gray"/>  //默认颜色
 <item android:drawable="@drawable/orange" android:state_pressed="true"/> //按下的改变的颜色
</selector>

这个是当你按下按键的时候按键会改变颜色

接下来就是布局文件了

activity_main.xml

我用的是表格布局,大家也可以用表格布局来写,效果会好一些

<?xml version="1.0" encoding="utf-8"?>
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
 android:layout_width="match_parent"
 android:layout_height="match_parent"

 android:background="#D8ECF3">

 <TextView
 android:gravity="bottom|right"
 android:textSize="70dp"
 android:singleLine="true"
 android:layout_margin="15dp"
 android:layout_width="match_parent"
 android:layout_height="120dp"
 android:background="@drawable/white"
 android:id="@+id/textView"/>

 <TableRow
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 android:layout_marginTop="10dp">

 <Button
  android:id="@+id/btn_clean"
  android:layout_marginLeft="10dp"
  android:background="@drawable/orange"
  android:gravity="center"
  android:text="C"
  android:textSize="25sp" />

 <Button
  android:id="@+id/btn_del"
  android:layout_marginLeft="10dp"
  android:layout_span="2"
  android:background="@drawable/gray"
  android:gravity="center"
  android:text="Del"
  android:textSize="25sp" />

 <Button
  android:id="@+id/btn_divide"
  android:layout_marginLeft="10dp"
  android:layout_marginRight="10dp"
  android:background="@drawable/gray"
  android:gravity="center"
  android:layout_span="1"
  android:text="/"
  android:textSize="25sp" />

 </TableRow>

 <TableRow
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 android:layout_marginTop="10dp">

 <Button
  android:id="@+id/btn_7"
  android:layout_marginLeft="10dp"
  android:background="@drawable/white"
  android:gravity="center"
  android:text="7"
  android:textSize="25sp" />

 <Button
  android:id="@+id/btn_8"
  android:layout_marginLeft="10dp"
  android:background="@drawable/white"
  android:gravity="center"
  android:text="8"
  android:textSize="25sp" />

 <Button
  android:id="@+id/btn_9"
  android:layout_marginLeft="10dp"
  android:background="@drawable/white"
  android:gravity="center"
  android:text="9"
  android:textSize="25sp" />

 <Button
  android:id="@+id/btn_multiply"
  android:layout_marginLeft="10dp"
  android:layout_marginRight="10dp"
  android:background="@drawable/gray"
  android:gravity="center"
  android:text="*"
  android:textSize="25sp" />
 </TableRow>

 <TableRow
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 android:layout_marginTop="10dp">

 <Button
  android:id="@+id/btn_4"
  android:layout_marginLeft="10dp"
  android:background="@drawable/white"
  android:gravity="center"
  android:text="4"
  android:textSize="25sp" />

 <Button
  android:id="@+id/btn_5"
  android:layout_marginLeft="10dp"
  android:background="@drawable/white"
  android:gravity="center"
  android:text="5"
  android:textSize="25sp" />

 <Button
  android:id="@+id/btn_6"
  android:layout_marginLeft="10dp"
  android:background="@drawable/white"
  android:gravity="center"
  android:text="6"
  android:textSize="25sp" />

 <Button
  android:id="@+id/btn_add"
  android:layout_marginLeft="10dp"
  android:layout_marginRight="10dp"
  android:background="@drawable/gray"
  android:gravity="center"
  android:text="+"
  android:textSize="25sp" />
 </TableRow>

 <TableRow
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 android:layout_marginTop="10dp">

 <Button
  android:id="@+id/btn_1"
  android:layout_marginLeft="10dp"
  android:background="@drawable/white"
  android:gravity="center"
  android:text="1"
  android:textSize="25sp" />

 <Button
  android:id="@+id/btn_2"
  android:layout_marginLeft="10dp"
  android:background="@drawable/white"
  android:gravity="center"
  android:text="2"
  android:textSize="25sp" />

 <Button
  android:id="@+id/btn_3"
  android:layout_marginLeft="10dp"
  android:background="@drawable/white"
  android:gravity="center"
  android:text="3"
  android:textSize="25sp" />

 <Button
  android:id="@+id/btn_minus"
  android:layout_marginLeft="10dp"
  android:layout_marginRight="10dp"
  android:background="@drawable/gray"
  android:gravity="center"
  android:text="-"
  android:textSize="25sp" />

 </TableRow>

 <TableRow
 android:layout_width="wrap_content"
 android:layout_height="match_parent"
 android:layout_marginTop="10dp">

 <Button
  android:id="@+id/btn_0"
  android:layout_marginLeft="10dp"
  android:layout_span="2"
  android:background="@drawable/white"
  android:gravity="center"
  android:text="0"
  android:textSize="25sp" />

 <Button
  android:id="@+id/btn_point"
  android:layout_marginLeft="10dp"
  android:layout_span="1"
  android:background="@drawable/white"
  android:gravity="center"
  android:text="."
  android:textSize="25sp" />

 <Button
  android:id="@+id/btn_equal"
  android:layout_marginLeft="10dp"
  android:layout_marginRight="10dp"
  android:layout_span="1"
  android:background="@drawable/gray"
  android:gravity="center"
  android:text="="
  android:textSize="25sp" />

 </TableRow>

</TableLayout>

接下来就是MainActivity.java

package com.example.calculator;

import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;

public class MainActivity extends AppCompatActivity implements View.OnClickListener {

 Button btn_clean,btn_del,btn_divide,btn_0,btn_1,btn_2,btn_3,btn_4,btn_5,btn_6,btn_7,btn_8,btn_9,
  btn_multiply,btn_add,btn_minus,btn_point,btn_equal;
 TextView textView;
 boolean clear_flag;   //清空标识
 @Override
 protected void onCreate(Bundle savedInstanceState) {
 super.onCreate (savedInstanceState);
 setContentView (R.layout.activity_main);
 btn_0 = findViewById(R.id.btn_0); //初始化
 btn_1 = findViewById(R.id.btn_1);
 btn_2 = findViewById(R.id.btn_2);
 btn_3 = findViewById(R.id.btn_3);
 btn_4 = findViewById(R.id.btn_4);
 btn_5 = findViewById(R.id.btn_5);
 btn_6 = findViewById(R.id.btn_6);
 btn_7 = findViewById(R.id.btn_7);
 btn_8 = findViewById(R.id.btn_8);
 btn_9 = findViewById(R.id.btn_9);
 btn_multiply = findViewById(R.id.btn_multiply);
 btn_divide = findViewById(R.id.btn_divide);
 btn_add = findViewById(R.id.btn_add);
 btn_minus = findViewById(R.id.btn_minus);
 btn_point = findViewById(R.id.btn_point);
 btn_del =findViewById(R.id.btn_del);
 btn_equal = findViewById(R.id.btn_equal);
 btn_clean = findViewById(R.id.btn_clean);

 textView = findViewById(R.id.textView);

 btn_0.setOnClickListener(this);  //设置按钮的点击事件
 btn_1.setOnClickListener(this);
 btn_2.setOnClickListener(this);
 btn_3.setOnClickListener(this);
 btn_4.setOnClickListener(this);
 btn_5.setOnClickListener(this);
 btn_6.setOnClickListener(this);
 btn_7.setOnClickListener(this);
 btn_8.setOnClickListener(this);
 btn_9.setOnClickListener(this);
 btn_minus.setOnClickListener(this);
 btn_multiply.setOnClickListener(this);
 btn_del.setOnClickListener(this);
 btn_divide.setOnClickListener(this);
 btn_point.setOnClickListener(this);
 btn_add.setOnClickListener(this);
 btn_equal.setOnClickListener(this);
 btn_clean.setOnClickListener(this);
 }

 public void onClick(View v) {
 String str = textView.getText().toString();
 switch(v.getId ()){
  case R.id.btn_0:
  case R.id.btn_1:
  case R.id.btn_2:
  case R.id.btn_3:
  case R.id.btn_4:
  case R.id.btn_5:
  case R.id.btn_6:
  case R.id.btn_7:
  case R.id.btn_8:
  case R.id.btn_9:
  case R.id.btn_point:
  if(clear_flag){
   clear_flag=false;
   str="";
   textView.setText ("");
  }
  textView.setText(str+((Button)v).getText ());
  break;

  case R.id.btn_add:
  case R.id.btn_minus:
  case R.id.btn_multiply:
  case R.id.btn_divide:
  if(clear_flag){
   clear_flag=false;
   textView.setText("");
  }
  textView.setText(str+" "+((Button)v).getText()+" ");
  break;
  case R.id.btn_del:
  if(clear_flag){
   clear_flag=false;
   textView.setText ("");
  }else if (str != null && !str.equals ("")){
   textView.setText(str.substring(0,str.length()-1)); //删除一个字符
  }
  break;
  case R.id.btn_clean:
  clear_flag=false;
  str = "";
  textView.setText(""); //清空文本内容
  break;
  case R.id.btn_equal:
  getResult();  //获取结果
  break;
 }
 }

 private void getResult() {    //算法
 String s = textView.getText().toString();
 if(s == null || s.equals ("")){
  return;
 }
 if (!s.contains ("")){
  return;
 }
 if (clear_flag){
  clear_flag=false;
  return;
 }
 clear_flag=true;

 String str1 = s.substring(0,s.indexOf(" "));   // 获取到运算符前面的字符
 String str_y = s.substring(s.indexOf(" ")+1,s.indexOf(" ")+2); //获取到运算符
 String str2 = s.substring(s.indexOf(" ")+ 3);   //获取到运算符后面的字符

 double result = 0;
 if (!str1.equals ("") && !str2.equals ("")){
  double num1 = Double.parseDouble(str1); //将str1、str2强制转化为double类型
  double num2 = Double.parseDouble(str2);

  if (str_y.equals ("+")){
  result = num1 + num2;
  }else if (str_y.equals ("-")){
  result = num1 - num2;
  }else if (str_y.equals ("÷")){
  if (num2 == 0){
   result = 0;
  }else {
   result = num1/num2;
  }
  }else if (str_y.equals ("*")){
  result = num1*num2;
  }
  if (!str1.contains (".") && !str2.contains (".") && !s.equals ("÷")){
  int k = (int) result;  //强制转换
  textView.setText (k);
  }else{
  textView.setText (result+"");
  }
 }else if (!str1.equals ("") && str2.equals ("")){
  textView.setText (s);
 }else if (str1.equals ("") && !str2.equals ("")){
  double num2 = Double.parseDouble(str2);
  if (s.equals ("+")){
  result = 0 + num2;
  }else if (s.equals("-")){
  result = 0 - num2;
  }else if (s.equals("×")){
  result = 0;
  }else if (s.equals("÷")){
  result = 0;
  }
  if (!str2.contains (".")) {
  int r = (int) result;
  textView.setText (r + "");
  } else {
  textView.setText (result + "");
  }
 } else {
  textView.setText ("");
 }
 }
}

这里的算法可能写的没有那么好,大家可以网上找找其他案例参照一下,继续完善算法

更多计算器功能实现,请点击专题: 计算器功能汇总 进行学习

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我们。

(0)

相关推荐

  • android studio实现计算器

    本文实例为大家分享了android studio实现计算器的具体代码,供大家参考,具体内容如下 效果图: 资源文件: color.xml <?xml version="1.0" encoding="utf-8"?> <resources> <color name="colorPrimary">#3F51B5</color> <color name="colorPrimaryDark&

  • Android studio设计简易计算器

    本文实例为大家分享了Android studio设计简易计算器的具体代码,供大家参考,具体内容如下 效果显示: 第一步,简单的界面布局 <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.and

  • Android studio实现简单计算器

    本文实例为大家分享了Android studio实现简单计算器的具体代码,供大家参考,具体内容如下 需求分析 在Android studio中设计并实现一个简单的计算器,实现连续的加减乘除运算. 界面设计 采用网格GridLayout布局,设计了一个6行4列的网格,最上边是一个EditText用来显示用户输入的运算数字和运算符,以及相关的运算结果,其占4列,文本框大小为50dip:依次往下的界面分别设置了数字和运算符以及操作的按钮,各行各列的每个按钮的大小均设为26sp. 编程分析 设计了两个文

  • 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:t

  • 从零开始学android实现计算器功能示例分享(计算器源码)

    下面是效果展示: 复制代码 代码如下: <?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"    android:layout_width="match_parent"    android:layout_height="match

  • android计算器简单实现代码

    本文实例为大家分享了android计算器的具体实现代码,供大家参考,具体内容如下 java代码: package com.itheima74.simplecalculator4; import android.os.Bundle; import android.support.v7.app.AppCompatActivity; import android.view.Menu; import android.view.MenuItem; import android.view.View; imp

  • Android Studio实现简单计算器功能

    本文实例为大家分享了Android Studio实现简单计算器功能的具体代码,供大家参考,具体内容如下 程序步骤: (1)在布局文件定义一些计算器界面的文本框,按钮等组件. (2)在Activity中获取组件实例. (3)通过swtich函数,判断输入的内容,并进行相应操作,通过getText()获取文本内容,setText()显示. 程序代码设计: 一.界面布局 参考书本例2-9,应用网格布局设计计算器界面,在设计区域设置一个6行4列的网格布局,第一行为显示数据的文本标签,第二行为清除数据的按

  • Android Studio实现简易计算器

    如果是制作简易计算器的话是基本没有难点的,供大家参考,具体内容如下 步骤是先写好界面布局,将按钮的布局.字号颜色啥的做好,再就是设置监听器. 使用了NoTitleBar的主题 代码如下: activity_main里关于界面的代码: <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/a

  • Android开发实现的简单计算器功能【附完整demo源码下载】

    本文实例讲述了Android开发实现的简单计算器功能.分享给大家供大家参考,具体如下: 这个Android计算器虽然还有点小bug,不过简单的计算功能还是没问题的哦: 先上图看效果 比较简单,所以我就没怎么写注释,应该一看就能明白的 有不明白的可以发信问我 先贴MainActivity.java代码 package com.example.calculator; import android.app.Activity; import android.os.Bundle; import andro

  • Android计算器编写代码

    其实这个安卓计算机,所有的后台思想与<C#计算器编写代码>是一模一样的.Win窗体程序移植到安卓,从C#到Java其实很简单的,因为两者的基本语法都很相像,唯一的难点是安卓的xml布局部分,不像C#窗体能够直接拖.  还是如下图一个能够完成基本四则运算的计算器: 先在res\values\strings.xml设置按钮相应的字体,以免布局文件警告满天飞: <?xml version="1.0" encoding="utf-8"?> <r

随机推荐