Android Studio实现简易计算器

如果是制作简易计算器的话是基本没有难点的,供大家参考,具体内容如下

步骤是先写好界面布局,将按钮的布局、字号颜色啥的做好,再就是设置监听器。

使用了NoTitleBar的主题

代码如下:

activity_main里关于界面的代码:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
  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"
  android:orientation="vertical"
  tools:context=".MainActivity"
  >

  <EditText
    android:id="@+id/et_input"
    android:layout_width="fill_parent"
    android:layout_height="90dp"
    android:background="@drawable/white_bg"
    android:editable="false"
    android:gravity="right|bottom"
    android:paddingBottom="20dp"
    android:paddingRight="20dp"
    android:textSize="50sp" />

  <LinearLayout
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_marginTop="30dp"
    android:orientation="horizontal"
    android:gravity="center_horizontal"
    >
  <Button
    android:id="@+id/bt_clr"
    android:layout_width="80dp"
    android:layout_height="80dp"
    android:text="C"
    android:gravity="right|bottom"
    android:textSize="30sp"
    android:background="@drawable/white_selector"
    android:paddingRight="15sp"
    android:paddingBottom="15sp"
    />
   <Button
      android:id="@+id/bt_del"
      android:layout_width="80dp"
      android:layout_height="80dp"
      android:text="DEL"
      android:gravity="right|bottom"
      android:textSize="30sp"
      android:layout_marginLeft="10dp"
     android:background="@drawable/white_selector"
     android:paddingRight="15sp"
     android:paddingBottom="15sp"
    />
    <Button
      android:id="@+id/bt_div"
      android:layout_width="80dp"
      android:layout_height="80dp"
      android:text="÷"
      android:textSize="30sp"
      android:gravity="right|bottom"
      android:layout_marginLeft="10dp"
      android:background="@drawable/white_selector"
      android:paddingRight="15sp"
      android:paddingBottom="15sp"
      />
    <Button
      android:id="@+id/bt_mul"
      android:layout_width="80dp"
      android:layout_height="80dp"
      android:text="×"
      android:textSize="30sp"
      android:gravity="right|bottom"
      android:layout_marginLeft="10dp"
      android:background="@drawable/white_selector"
      android:paddingRight="15sp"
      android:paddingBottom="15sp"
      />
  </LinearLayout>

  <LinearLayout
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_marginTop="10dp"
    android:orientation="horizontal"
    android:gravity="center_horizontal"
    >
    <Button
      android:id="@+id/bt_7"
      android:layout_width="80dp"
      android:layout_height="80dp"
      android:text="7"
      android:gravity="right|bottom"
      android:textSize="30sp"
      android:background="@drawable/white_selector"
      android:paddingRight="15sp"
      android:paddingBottom="15sp"
      />
    <Button
      android:id="@+id/bt_8"
      android:layout_width="80dp"
      android:layout_height="80dp"
      android:text="8"
      android:gravity="right|bottom"
      android:textSize="30sp"
      android:layout_marginLeft="10dp"
      android:background="@drawable/white_selector"
      android:paddingRight="15sp"
      android:paddingBottom="15sp"
      />
    <Button
      android:id="@+id/bt_9"
      android:layout_width="80dp"
      android:layout_height="80dp"
      android:text="9"
      android:textSize="30sp"
      android:gravity="right|bottom"
      android:layout_marginLeft="10dp"
      android:background="@drawable/white_selector"
      android:paddingRight="15sp"
      android:paddingBottom="15sp"
      />
    <Button
      android:id="@+id/bt_sub"
      android:layout_width="80dp"
      android:layout_height="80dp"
      android:text="-"
      android:textSize="30sp"
      android:gravity="right|bottom"
      android:layout_marginLeft="10dp"
      android:background="@drawable/white_selector"
      android:paddingRight="15sp"
      android:paddingBottom="15sp"
      />
  </LinearLayout>

  <LinearLayout
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_marginTop="10dp"
    android:orientation="horizontal"
    android:gravity="center_horizontal"
    >
    <Button
      android:id="@+id/bt_4"
      android:layout_width="80dp"
      android:layout_height="80dp"
      android:text="4"
      android:gravity="right|bottom"
      android:textSize="30sp"
      android:background="@drawable/white_selector"
      android:paddingRight="15sp"
      android:paddingBottom="15sp"
      />
    <Button
      android:id="@+id/bt_5"
      android:layout_width="80dp"
      android:layout_height="80dp"
      android:text="5"
      android:gravity="right|bottom"
      android:textSize="30sp"
      android:layout_marginLeft="10dp"
      android:background="@drawable/white_selector"
      android:paddingRight="15sp"
      android:paddingBottom="15sp"
      />
    <Button
      android:id="@+id/bt_6"
      android:layout_width="80dp"
      android:layout_height="80dp"
      android:text="6"
      android:textSize="30sp"
      android:gravity="right|bottom"
      android:layout_marginLeft="10dp"
      android:background="@drawable/white_selector"
      android:paddingRight="15sp"
      android:paddingBottom="15sp"
      />
    <Button
      android:id="@+id/bt_add"
      android:layout_width="80dp"
      android:layout_height="80dp"
      android:text="+"
      android:textSize="30sp"
      android:gravity="right|bottom"
      android:layout_marginLeft="10dp"
      android:background="@drawable/white_selector"
      android:paddingRight="15sp"
      android:paddingBottom="15sp"
      />
  </LinearLayout>

   <LinearLayout
     android:layout_width="fill_parent"
     android:layout_height="wrap_content"
     android:orientation="horizontal"
     android:layout_marginTop="10dp"
     android:gravity="center_horizontal">
     <LinearLayout
       android:layout_width="wrap_content"
       android:layout_height="wrap_content"
       android:orientation="vertical"
       >
       <LinearLayout
         android:layout_width="wrap_content"
         android:layout_height="wrap_content"
         android:orientation="horizontal"
         >
         <Button
           android:layout_width="80dp"
           android:layout_height="80dp"
           android:id="@+id/bt_1"
           android:text="1"
           android:textSize="30sp"
           android:gravity="right|bottom"
           android:background="@drawable/white_selector"
           android:paddingRight="15sp"
           android:paddingBottom="15sp"
           />
         <Button
           android:layout_width="80dp"
           android:layout_height="80dp"
           android:id="@+id/bt_2"
           android:text="2"
           android:textSize="30sp"
           android:gravity="right|bottom"
           android:layout_marginLeft="10dp"
           android:background="@drawable/white_selector"
           android:paddingRight="15sp"
           android:paddingBottom="15sp"
           />
         <Button
           android:layout_width="80dp"
           android:layout_height="80dp"
           android:id="@+id/bt_3"
           android:text="3"
           android:textSize="30sp"
           android:gravity="right|bottom"
           android:layout_marginLeft="10dp"
           android:background="@drawable/white_selector"
           android:paddingRight="15sp"
           android:paddingBottom="15sp"
           />
       </LinearLayout>
       <LinearLayout
         android:layout_width="wrap_content"
         android:layout_height="wrap_content"
         android:orientation="horizontal"
         android:layout_marginTop="10dp">
         <Button
           android:layout_width="170dp"
           android:layout_height="80dp"
           android:id="@+id/bt_0"
           android:text="0"
           android:textSize="30sp"
           android:gravity="right|bottom"
           android:background="@drawable/white_selector"
           android:paddingRight="15sp"
           android:paddingBottom="15sp"
           />
         <Button
           android:layout_width="80dp"
           android:layout_height="80dp"
           android:id="@+id/bt_pt"
           android:text="."
           android:textSize="30sp"
           android:gravity="right|bottom"
           android:layout_marginLeft="10dp"
           android:background="@drawable/white_selector"
           android:paddingRight="15sp"
           android:paddingBottom="15sp"
           />
       </LinearLayout>

     </LinearLayout>

     <Button
       android:id="@+id/bt_eq"
       android:layout_width="80dp"
       android:layout_height="170dp"
       android:layout_marginLeft="10dp"
       android:background="@drawable/orange_selector"
       android:gravity="right|bottom"
       android:text="="
       android:textSize="30sp"
       android:paddingRight="15sp"
       android:paddingBottom="15sp"
       />

   </LinearLayout>
</LinearLayout>

Mainactivity的代码:

package com.example.administrator.calculatordemo;

import android.app.Activity;
import android.content.DialogInterface;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;

public class MainActivity extends Activity implements View.OnClickListener{
  Button bt_0,bt_1,bt_2,bt_3,bt_4,bt_5,bt_6,bt_7,bt_8,bt_9,bt_pt;
  Button bt_mul,bt_div,bt_add,bt_sub;
  Button bt_clr,bt_del,bt_eq;
  EditText et_input;
  boolean clr_flag;  //判断et中是否清空
  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    //实例化对象
    setContentView(R.layout.activity_main);
    bt_0= (Button) findViewById(R.id.bt_0);
    bt_1= (Button) findViewById(R.id.bt_1);
    bt_2= (Button) findViewById(R.id.bt_2);
    bt_3= (Button) findViewById(R.id.bt_3);
    bt_4= (Button) findViewById(R.id.bt_4);
    bt_5= (Button) findViewById(R.id.bt_5);
    bt_6= (Button) findViewById(R.id.bt_6);
    bt_7= (Button) findViewById(R.id.bt_7);
    bt_8= (Button) findViewById(R.id.bt_8);
    bt_9= (Button) findViewById(R.id.bt_9);
    bt_pt= (Button) findViewById(R.id.bt_pt);
    bt_add= (Button) findViewById(R.id.bt_add);
    bt_sub= (Button) findViewById(R.id.bt_sub);
    bt_mul= (Button) findViewById(R.id.bt_mul);
    bt_div= (Button) findViewById(R.id.bt_div);
    bt_clr= (Button) findViewById(R.id.bt_clr);
    bt_del= (Button) findViewById(R.id.bt_del);
    bt_eq= (Button) findViewById(R.id.bt_eq);
    et_input= (EditText) findViewById(R.id.et_input);

    //设置按钮的点击事件
    bt_0.setOnClickListener(this);
    bt_1.setOnClickListener(this);
    bt_2.setOnClickListener(this);
    bt_3.setOnClickListener(this);
    bt_4.setOnClickListener(this);
    bt_5.setOnClickListener(this);
    bt_6.setOnClickListener(this);
    bt_7.setOnClickListener(this);
    bt_8.setOnClickListener(this);
    bt_9.setOnClickListener(this);
    bt_pt.setOnClickListener(this);
    bt_add.setOnClickListener(this);
    bt_sub.setOnClickListener(this);
    bt_mul.setOnClickListener(this);
    bt_div.setOnClickListener(this);
    bt_clr.setOnClickListener(this);
    bt_del.setOnClickListener(this);
    bt_eq.setOnClickListener(this);
  }

  @Override
  public void onClick(View v) {
    String str=et_input.getText().toString();
     switch (v.getId()){
       case  R.id.bt_0:
       case  R.id.bt_1:
       case  R.id.bt_2:
       case  R.id.bt_3:
       case  R.id.bt_4:
       case  R.id.bt_5:
       case  R.id.bt_6:
       case  R.id.bt_7:
       case  R.id.bt_8:
       case  R.id.bt_9:
       case  R.id.bt_pt:
         if(clr_flag){
           clr_flag=false;
           str="";
           et_input.setText("");
         }
         et_input.setText(str+((Button)v).getText());
         break;
       case R.id.bt_add:
       case R.id.bt_sub:
       case R.id.bt_mul:
       case R.id.bt_div:
         if(clr_flag){
           clr_flag=false;
           str="";
           et_input.setText("");
         }
         if(str.contains("+")||str.contains("-")||str.contains("×")||str.contains("÷")) {
           str=str.substring(0,str.indexOf(" "));
         }
         et_input.setText(str+" "+((Button)v).getText()+" ");
         break;
       case R.id.bt_clr:
         if(clr_flag)
           clr_flag=false;
         str="";
         et_input.setText("");
         break;
       case R.id.bt_del: //判断是否为空,然后在进行删除
         if(clr_flag){
           clr_flag=false;
           str="";
           et_input.setText("");
         }
        else if(str!=null&&!str.equals("")){
           et_input.setText(str.substring(0,str.length()-1));
         }
         break;
       case R.id.bt_eq: //单独运算最后结果
         getResult();
         break;
     }
  }

  private void getResult(){
     String exp=et_input.getText().toString();
    if(exp==null||exp.equals("")) return ;
    //因为没有运算符所以不用运算
    if(!exp.contains(" ")){
      return ;
    }
    if(clr_flag){
      clr_flag=false;
      return;
    }
    clr_flag=true;
    //截取运算符前面的字符串
    String s1=exp.substring(0,exp.indexOf(" "));
    //截取的运算符
    String op=exp.substring(exp.indexOf(" ")+1,exp.indexOf(" ")+2);
    //截取运算符后面的字符串
    String s2=exp.substring(exp.indexOf(" ")+3);
    double cnt=0;
    if(!s1.equals("")&&!s2.equals("")){
      double d1=Double.parseDouble(s1);
      double d2=Double.parseDouble(s2);
      if(op.equals("+")){
         cnt=d1+d2;
      }
      if(op.equals("-")){
          cnt=d1-d2;
      }
      if(op.equals("×")){
          cnt=d1*d2;
      }
      if(op.equals("÷")){
          if(d2==0) cnt=0;
        else cnt=d1/d2;
      }
    if(!s1.contains(".")&&!s2.contains(".")&&!op.equals("÷")) {
      int res = (int) cnt;
      et_input.setText(res+"");
    }else {
      et_input.setText(cnt+"");}
    }
    //s1不为空但s2为空
    else if(!s1.equals("")&&s2.equals("")){
      double d1=Double.parseDouble(s1);
      if(op.equals("+")){
        cnt=d1;
      }
      if(op.equals("-")){
        cnt=d1;
      }
      if(op.equals("×")){
        cnt=0;
      }
      if(op.equals("÷")){
        cnt=0;
      }
      if(!s1.contains(".")) {
        int res = (int) cnt;
        et_input.setText(res+"");
      }else {
        et_input.setText(cnt+"");}
    }
    //s1是空但s2不是空
    else if(s1.equals("")&&!s2.equals("")){
      double d2=Double.parseDouble(s2);
      if(op.equals("+")){
        cnt=d2;
      }
      if(op.equals("-")){
        cnt=0-d2;
      }
      if(op.equals("×")){
        cnt=0;
      }
      if(op.equals("÷")){
        cnt=0;
      }
      if(!s2.contains(".")) {
        int res = (int) cnt;
        et_input.setText(res+"");
      }else {
        et_input.setText(cnt+"");}
    }
    else {
      et_input.setText("");
    }
  }
}

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

(0)

相关推荐

  • 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实现简单计算器功能

    本文实例为大家分享了android实现简单计算器的具体代码,供大家参考,具体内容如下 // 日期:2014/9/26 // 首先,人们的输入习惯为中缀表达式.为了便于计算,程序会将中缀表达式会转换为后缀表达式 //////////////////////////////////////////////////////////////////////////////////////// // 目前软件还存在 // 1.输入运算数和运算符不匹配时,崩溃的现象.(如:只输入一个操作数) // 2.一个

  • Android计算器编写代码

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

  • 简单实现Android计算器功能

    自己写的安卓的计算器: 注:这个是在mac中开发的,如果要在windows的eclipse中运行可能会出现路径问题,解决办法从windows中已有的安卓工程根目录下复制一下classpath文件,然后复制粘贴覆盖掉这个工程根目录里面的路径文件,再导入工程应该就可以打开了.  安卓计算器Android <wbr>calculator 工程下载链接:https://github.com/jiangxh1992/Android-Calculator 代码: package com.example.c

  • android计时器,时间计算器的实现方法

    需求:默认为"00:00:00",点击开始按钮时清零后开始计时,出现如10:28:34.点击停止的时候停止计时.问题:使用Calendar DateFormat的方法,不设置时区获取到的小时是本地时区的(东八区的就是8),设置成GMT标准时区获取到的时间是12小时(12:00:00),设置24小时制无效.在开始时间加减各种小时都无效,而且计时只能到12小时就自动跳上去了,始终无法出现默认状态00:00:00开始计时的效果.尝试各种时间设置方法无效后只能自己写一个根据秒数转换时间格式字符

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

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

  • Android中使用GridLayout网格布局来制作简单的计算器App

    关于GridLayout 在android4.0版本之前,如果想要达到网格布局的效果,首先可以考虑使用最常见的LinearLayout布局,但是这样的排布会产生如下几点问题: 1.不能同时在X,Y轴方向上进行控件的对齐. 2.当多层布局嵌套时会有性能问题. 3.不能稳定地支持一些支持自由编辑布局的工具. 其次考虑使用表格布局TabelLayout,这种方式会把包含的元素以行和列的形式进行排列,每行为一个TableRow对象,也可以是一个View对象,而在TableRow中还可以继续添加其他的控件

  • Android实战教程第一篇之最简单的计算器

    从今天开始,本专栏持续更新Android简易实战类博客文章.和以往专栏不同,此专栏只有实例.每个实例尽量按照知识点对应相应一章节的内容去写,循序渐进.有些实例可能会与另一个专栏有重复的文章. 开始本专栏的第一个简易案例: 首先设置两个布局文件,一个布局文件进行输入数据,获取加法运算:另一个布局文件进行显示最终结果.Activity1启动Activity2,并传递计算结果值给Activity2. main.xml: <?xml version="1.0" encoding=&quo

  • 从零开始学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计算器代码示例分享

    复制代码 代码如下: <?xml version="1.0" encoding="utf-8"?><EditText    android:id="@+id/editText1"    android:layout_width="match_parent"    android:layout_height="wrap_content"    android:ems="10&quo

随机推荐