用android studio 完成简单计算器设计开发日志

         简单计算器的设计是学习安卓的第一个APP的设计,我发现,其实安卓跟Java有很大的相似性,虽然界面的设计要用到前端的设计,但是功能的实现基本都是使用Java来实现的,但由于对Android studio和虚拟器的不熟悉以及对Java的掌握度不高,所以在进行设计的时候遇到了很多问题。

        (1)最先遇到的问题是蓝叠中国突然连接不上,而且连接上之后第二天可能就又出问题了,之前是可以的,后来就上网找原因,发现可能是adb那里的端口被占用了,可以先去验证一下,然后再重新连,可是后来在连接的时候又显示积极拒绝连接,可能是虚拟机那里出问题了。由于手机系统不同,所以就无法连接手机进行界面的实现,后来就想着能不能用回Android自身的虚拟器,发现说可能是emulator和haxm的文件不完全,要先将这两个文件下载好,然后再去BIOS那里修改设置,发现是可以的,只是自身带的虚拟机还是太大,运行太慢,所以还是去弄蓝叠中国了。

         (2)进入了模拟器了,但是由于蓝叠中国的界面是长方形的,而在Android studio设置的preview是长方形的,所以有些地方显示不出来,所以在建立一个项目之前需要设置一下界面。

实现的界面如下:用android studio 完成简单计算器设计开发日志_第1张图片

设计步骤:

(1)在布局文件中声明按钮等;

(2)在activity中获得实例;

(3)调用getText方法进行加减乘除运算。

源代码如下:

activity_main.xml




    

    

    

这一次选择了LinearLayout布局,因为对比起来,对该布局了解的更深,使用起来更加简单一些

MainActivity源代码如下:

package com.xdw.jisuanji;

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 AppCompatActivity implements View.OnClickListener  {
    Button btn_1,btn_2,btn_3,btn_4,btn_5,btn_6,btn_7,btn_8,btn_9,btn_0;
    Button btn_plus,btn_clear,btn_reduce,btn_time,btn_point,btn_equal,btn_devide;
    EditText tv_label;
    boolean clear_flag;  //清空标识
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);    //将对象实例化
        btn_1=(Button)findViewById(R.id.btn_1);
        btn_2=(Button)findViewById(R.id.btn_2);
        btn_3=(Button)findViewById(R.id.btn_3);
        btn_4=(Button)findViewById(R.id.btn_4);
        btn_5=(Button)findViewById(R.id.btn_5);
        btn_6=(Button)findViewById(R.id.btn_6);
        btn_7=(Button)findViewById(R.id.btn_7);
        btn_8=(Button)findViewById(R.id.btn_8);
        btn_9=(Button)findViewById(R.id.btn_9);
        btn_0=(Button)findViewById(R.id.btn_0);
        btn_plus=(Button)findViewById(R.id.btn_plus);
        btn_clear=(Button)findViewById(R.id.btn_clear);
        btn_reduce=(Button)findViewById(R.id.btn_reduce);
        btn_time=(Button)findViewById(R.id.btn_time);
        btn_point=(Button)findViewById(R.id.btn_point);
        btn_equal=(Button)findViewById(R.id.btn_equal);
        btn_devide=(Button)findViewById(R.id.btn_divide);
        tv_label=(EditText)findViewById(R.id.tv_label);  //实例化之后的显示屏

        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_0.setOnClickListener(this);
        btn_plus.setOnClickListener(this);
        btn_clear.setOnClickListener(this);
        btn_reduce.setOnClickListener(this);
        btn_time.setOnClickListener(this);
        btn_point.setOnClickListener(this);
        btn_equal.setOnClickListener(this);
        btn_devide.setOnClickListener(this);
    }

    @Override
    public void onClick(View v){
        String str=tv_label.getText().toString();
        switch(v.getId())
        {
            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_0:
            case R.id.btn_point:
                 if(clear_flag){
                     clear_flag=false;
                     str="";
                     tv_label.setText("");
                 }
                 tv_label.setText(str+((Button)v).getText());
                 break;

            case R.id.btn_divide:
            case R.id.btn_plus:
            case R.id.btn_reduce:
            case R.id.btn_time:
                 if(clear_flag){
                     clear_flag=false;
                     str="";
                     tv_label.setText("");
                 }
                 tv_label.setText(str+""+((Button)v).getText()+"");
                 break;

            case R.id.btn_clear:
                 clear_flag=false;
                 str="";
                 tv_label.setText("");
            case R.id.btn_equal:          //单独运算最后结果
                 getResult();          //调用函数
                 break;
        }
    }

    private void getResult() {
        String string=tv_label.getText().toString();
        if(string==null || string.equals(""))  return;
            if (!string.contains("")){
                return;
            }
            if (clear_flag){
                clear_flag=false;
                return;
            }
            clear_flag=false;
            String s1=string.substring(0,string.indexOf(""));     //运算符前面的字串符
            String option=string.substring(string.indexOf("")+1,string.indexOf("")+2);//截取的运算符
            String s2=string.substring(string.indexOf("")+3);    //截取运算符后面的字符串
            double result=0;
            if (!s1.equals("")&&!s2.equals("")){           //s1,s2均不为空
                double d1=Double.parseDouble(s1);
                double d2=Double.parseDouble(s2);
                if (option.equals("+")) {
                    result = d1 + d2;
                }else if (option.equals("-")){
                    result=d1-d2;
                }else if (option.equals("*")){
                    result=d1*d2;
                }else if (option.equals("/")){
                    if (d2==0){
                        result=0;
                    }else {
                        result = d1 / d2*1.0;
                        }
                    }
                    if (!s1.contains(".")&&!s2.contains(".")){
                        int r=(int) result;
                        tv_label.setText(Integer.toString(r)+"");
                    }else{
                        tv_label.setText(Double.toString(result) +"");
                    }
                }else if (!s1.equals("")&&s2.equals("")) {           //s1不为空,s2为空
                    double d1=Double.parseDouble(s1);
                    if (option.equals("+")) {
                        result = d1;
                    }else if (option.equals("-")){
                        result=d1;
                    }else if (option.equals("*")){
                        result=0;
                    }else if (option.equals("/")){
                        result=0;
                    }
                    if (!s1.contains(".")){
                        int r=(int) result;
                        tv_label.setText(r+"");
                    }else{
                        tv_label.setText(result+"");
                    }
                }else if (s1.equals("")&&!s2.equals("")) {           //s1为空,s2不为空
                    double d2=Double.parseDouble(s2);
                    if (option.equals("+")) {
                        result = d2;
                    }else if (option.equals("-")){
                        result=-d2;
                    }else if (option.equals("*")){
                        result=0;
                    }else if (option.equals("/")){
                        result=0;
                    }
                    if (!s2.contains(".")){
                        int r=(int) result;
                        tv_label.setText(r+"");
                    }else{
                        tv_label.setText(result+"");
                    }
                }else{
                    tv_label.setText("");
                }
    }
}

 

你可能感兴趣的:(用android studio 完成简单计算器设计开发日志)