Android计算器简单逻辑实现实例分享

所属分类: 软件编程 / Android 阅读数: 1571
收藏 0 赞 0 分享

引言:

  我的android计算器的实现方式是:按钮输入一次,就处理一次。

  但是如果你学过数据结构(栈),就可以使用表达式解析(前缀,后缀)处理。

  而这个方式已经很成熟了,但是时间有限,只完成了这个简单的计算器。

  至于,这个Android的布局已经在我博客中发布了,不再讲述。    

复制代码 代码如下:

package com.example.androidlessontwo;

import android.os.Bundle;
import android.app.Activity;
import android.view.Menu;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;

public class MainActivity extends Activity  {

    private Button[] buttonNum=new Button[11];
    private Button[] buttonComand=new Button[5];
    private TextView input=null;
    private TextView rl=null;
    private Button   buttonClear=null;
    private boolean firstFlag=true;
    private double result=0.0;
    private String lastCommand;

    public void MyCalculator()
    {
        result = 0.0;
        firstFlag=true;
        lastCommand="=";
    }
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        buttonNum[0]=(Button) findViewById(R.id.num0);
        buttonNum[1]=(Button) findViewById(R.id.num1);
        buttonNum[2]=(Button) findViewById(R.id.num2);
        buttonNum[3]=(Button) findViewById(R.id.num3);
        buttonNum[4]=(Button) findViewById(R.id.num4);
        buttonNum[5]=(Button) findViewById(R.id.num5);
        buttonNum[6]=(Button) findViewById(R.id.num6);
        buttonNum[7]=(Button) findViewById(R.id.num7);
        buttonNum[8]=(Button) findViewById(R.id.num8);
        buttonNum[9]=(Button) findViewById(R.id.num9);
        buttonNum[10]=(Button) findViewById(R.id.point);

        buttonComand[0]=(Button) findViewById(R.id.add);
        buttonComand[1]=(Button) findViewById(R.id.sub);
        buttonComand[2]=(Button) findViewById(R.id.ride);
        buttonComand[3]=(Button) findViewById(R.id.divide);
        buttonComand[4]=(Button) findViewById(R.id.equal);

        input=(TextView) findViewById(R.id.input);
        rl   =(TextView) findViewById(R.id.rl);
        buttonClear=(Button) findViewById(R.id.clean);

        NumberAction na= new NumberAction();
        CommandAction ca=new CommandAction();
        for(Button bc:buttonComand)
        {
            bc.setOnClickListener(ca);
        }
        for(Button bc:buttonNum)
        {
            bc.setOnClickListener(na);
        }
        buttonClear.setOnClickListener(new Button.OnClickListener()
        {

            @Override
            public void onClick(View v) {
                MyCalculator();
                rl.setText("0.0");
            }
        });
    }
    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.main, menu);
        return true;
    }
    private class NumberAction implements Button.OnClickListener
    {

        @Override
        public void onClick(View view)
        {
            Button btn = (Button)view;
            String inputTemp =btn.getText().toString();//6
            input.setText(input.getText().toString()+inputTemp);   
            double numtemp = 0;
            switch(btn.getId())
            {
                case R.id.num0:
                {
                    if(firstFlag)
                        {
                            result=result*10+0;
                            firstFlag=false;
                        }
                    else
                        numtemp=numtemp*10+0;
                    break;
                }
                case R.id.num1:
                {
                    if(firstFlag)
                        {
                        result=result*10+1;
                            firstFlag=false;
                        }
                    else
                        numtemp=numtemp*10+1;
                    break;
                }
                case R.id.num2:
                {
                    if(firstFlag)
                        {
                        result=result*10+2;
                            firstFlag=false;
                        }
                    else
                        numtemp=numtemp*10+2;
                    break;
                }
                case R.id.num3:
                {
                    if(firstFlag)
                        {
                        result=result*10+3;
                            firstFlag=false;
                        }
                    else
                        numtemp=numtemp*10+3;
                    break;
                }
                case R.id.num4:
                {
                    if(firstFlag)
                        {
                        result=result*10+4;
                            firstFlag=false;
                        }
                    else
                        numtemp=numtemp*10+4;
                    break;
                }
                case R.id.num5:
                {
                    if(firstFlag)
                        {
                        result=result*10+5;
                            firstFlag=false;
                        }
                    else
                        numtemp=numtemp*10+5;
                    break;
                }
                case R.id.num6:
                {
                    if(firstFlag)
                        {
                        result=result*10+6;
                            firstFlag=false;
                        }
                    else
                        {
                            numtemp=numtemp*10+6;
                            calculate(numtemp);
                        }
                    break;
                }
                case R.id.num7:
                {
                    if(firstFlag)
                        {
                            result=result*10+7;
                            firstFlag=false;
                        }
                    else
                    {
                        numtemp=numtemp*10+7;
                        calculate(numtemp);
                    }
                    break;
                }
                case R.id.num8:
                {
                    if(firstFlag)
                        {
                        result=result*10+8;
                            {
                                result=result*10+8;
                                firstFlag=false;
                            }
                        }
                    else
                        {
                            numtemp=numtemp*10+8;
                            calculate(numtemp);
                        }
                    break;
                }
                case R.id.num9:
                {
                    if(firstFlag)
                        {
                        result=result*10+9;
                            firstFlag=false;
                        }
                    else
                        {
                            numtemp=numtemp*10+9;
                            calculate(numtemp);
                        }
                    break;
                }   
            }           

           

           
        }

    }

    private class CommandAction implements Button.OnClickListener
    {
        @Override
        public void onClick(View v)
        {
            Button btn=(Button)v;
            String inputCommand=(String)btn.getText();
            switch(btn.getId())
            {
                case R.id.add:
                {
                    lastCommand="+";
                    break;
                }
                case R.id.sub:
                {
                    lastCommand="-";
                    break;
                }
                case R.id.ride:
                {
                    lastCommand="*";
                    break;
                }
                case R.id.divide:
                {
                    lastCommand="/";
                    break;
                }
                case R.id.equal:
                {
                    lastCommand="=";
                    input.setText("");
                    rl.setText(String.valueOf(result));
                    return ;
                }

            }
            input.setText(input.getText()+inputCommand);   
        }

    }
    private void calculate(double x)
    {

       
         if(lastCommand.equals("+"))
            {
                result += x;
            }

         if(lastCommand.equals("-"))
            {
                result -= x;
            }

         if(lastCommand.equals("*"))
            {
                result *= x;
            }

         if(lastCommand.equals("/"))
            {
                result /= x;
            }
    }

}

更多精彩内容其他人还在看

Retrofit2日志拦截器的使用

这篇文章主要介绍了Retrofit2日志拦截器的使用,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧
收藏 0 赞 0 分享

Android创建外部lib库及自定义View的图文教程

这篇文章主要给大家介绍了关于Android创建外部lib库及自定义View的相关资料,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
收藏 0 赞 0 分享

Android分享微信小程序失败的一些事小结

这篇文章主要给大家介绍了关于Android分享微信小程序失败一些事,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
收藏 0 赞 0 分享

Android分享微信小程序技巧之图片优化

这篇文章主要给大家介绍了关于Android分享微信小程序技巧之图片优化的相关资料,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
收藏 0 赞 0 分享

Android Viewpager实现无限循环轮播图

这篇文章主要为大家详细介绍了Android Viewpager实现无限循环轮播图,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
收藏 0 赞 0 分享

Android中的Bitmap序列化失败的解决方法

这篇文章主要介绍了Android中的Bitmap序列化失败的解决方法,本文通过实例代码给大家介绍的非常详细,具有一定的参考借鉴价值,需要的朋友可以参考下
收藏 0 赞 0 分享

Android自定义通用标题栏CustomTitleBar

这篇文章主要为大家详细介绍了Android自定义通用标题栏CustomTitleBar,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
收藏 0 赞 0 分享

Android组合控件自定义标题栏

这篇文章主要为大家详细介绍了Android组合控件自定义标题栏,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
收藏 0 赞 0 分享

Android自定义复合控件实现通用标题栏

这篇文章主要为大家详细介绍了Android自定义复合控件实现通用标题栏,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
收藏 0 赞 0 分享

ExpandableListView实现简单二级列表

这篇文章主要为大家详细介绍了ExpandableListView实现简单二级列表,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
收藏 0 赞 0 分享
查看更多