1. 程式人生 > >android計算器開源小專案程式碼(附安裝包.apk)

android計算器開源小專案程式碼(附安裝包.apk)

最近在學習安卓開發,做了個小計算器作為實踐。發現網上的計算器教程程式碼的健壯性不夠好,只能夠容忍正確的輸入。於是我花了幾天時間寫了個完整的程式。可能是我水平有限,其中條件控制邏輯設計的比較複雜,但我受開源運動影響比較深,我學習了別人的程式碼,就應該把自己的程式碼公佈出來,即使寫的不好,多多少少能為一些人帶來一點點幫助吧,同時記錄自己的學習歷程。

先來展示一下成果:

 開發工具我選擇了android studio, 誠實的說我對xml並不是那麼的瞭解,所以我只能採用所見即所得的辦法,不過這個小專案做下來,感覺比剛開始好多了。

再說一下思路吧,計算器上方是個顯示器,是一個TextView,顯示器上方的東西是個spinner,作用待會再說,顯示器下方都是button,通過監聽button的摁下,在TextView上顯示使用者輸入來與使用者做互動,然後將TextView上的內容提取出來做運算,再顯示再螢幕上。其實大部分的工作都是在做人機互動以及規範使用者的輸入,真正實現功能的程式碼並不多。

下面開始貼程式碼了,先貼xml吧,方便與上面的圖片比對

xml程式碼部分(AndroidMainfest.xml):

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.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">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:gravity="bottom"
        android:orientation="vertical"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent">

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_weight="9"
            android:orientation="vertical">

            <Spinner
                android:id="@+id/spinner"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:gravity="start"
                android:textSize="50sp" />

            <TextView
                android:id="@+id/concle"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:gravity="bottom|end"
                android:maxLines="2"
                android:minLines="1"
                android:singleLine="false"
                android:text="@string/priNum"
                android:textSize="45sp"
                />

        </LinearLayout>

        <TableLayout
            android:id="@+id/table"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_weight="4"
            android:gravity="bottom">

            <TableRow
                android:id="@+id/line1"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:layout_weight="1">

                <Button
                    android:id="@+id/buttonClean"
                    style="?android:attr/buttonStyle"
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    android:layout_weight="1"
                    android:background="@android:color/darker_gray"
                    android:text="@string/button_c"
                    android:textColor="@android:color/holo_red_dark"
                    android:textSize="40sp" />

                <Button
                    android:id="@+id/buttonMul"
                    style="?android:attr/buttonStyle"
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    android:layout_weight="1"
                    android:background="#fa8e12"
                    android:text="@string/button_mul"
                    android:textSize="40sp" />

                <Button
                    android:id="@+id/buttonDiv"
                    style="?android:attr/buttonStyle"
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    android:layout_weight="1"
                    android:background="#fa8e12"
                    android:text="@string/button_div"
                    android:textSize="40sp" />

                <Button
                    android:id="@+id/buttonDel"
                    style="?android:attr/buttonStyle"
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    android:layout_weight="1"
                    android:background="#b22222"
                    android:text="@string/button_del"
                    android:textSize="40sp" />
            </TableRow>

            <TableRow
                android:id="@+id/line2"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:layout_weight="1">

                <Button
                    android:id="@+id/button7"
                    style="?android:attr/buttonStyle"
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    android:layout_weight="1"
                    android:background="#cdced1"
                    android:text="@string/button_7"
                    android:textSize="40sp" />

                <Button
                    android:id="@+id/button8"
                    style="?android:attr/buttonStyle"
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    android:layout_weight="1"
                    android:background="#cdced1"
                    android:text="@string/button_8"
                    android:textSize="40sp" />

                <Button
                    android:id="@+id/button9"
                    style="?android:attr/buttonStyle"
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    android:layout_weight="1"
                    android:background="#cdced1"
                    android:text="@string/button_9"
                    android:textSize="40sp" />

                <Button
                    android:id="@+id/buttonAdd"
                    style="?android:attr/buttonStyle"
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    android:layout_weight="1"
                    android:background="#fa8e12"
                    android:text="@string/button_add"
                    android:textSize="40sp" />
            </TableRow>

            <TableRow
                android:id="@+id/line3"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:layout_weight="1">

                <Button
                    android:id="@+id/button4"
                    style="?android:attr/buttonStyle"
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    android:layout_weight="1"
                    android:background="#cdced1"
                    android:text="@string/button_4"
                    android:textSize="40sp" />

                <Button
                    android:id="@+id/button5"
                    style="?android:attr/buttonStyle"
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    android:layout_weight="1"
                    android:background="#cdced1"
                    android:text="@string/button_5"
                    android:textSize="40sp" />

                <Button
                    android:id="@+id/button6"
                    style="?android:attr/buttonStyle"
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    android:layout_weight="1"
                    android:background="#cdced1"
                    android:text="@string/button_6"
                    android:textSize="40sp" />

                <Button
                    android:id="@+id/buttonSub"
                    style="?android:attr/buttonStyle"
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    android:layout_weight="1"
                    android:background="#fa8e12"
                    android:text="@string/button_sub"
                    android:textSize="40sp" />
            </TableRow>

            <TableRow
                android:id="@+id/line4"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:layout_weight="1">

                <Button
                    android:id="@+id/button1"
                    style="?android:attr/buttonStyle"
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    android:layout_weight="1"
                    android:background="#cdced1"
                    android:text="@string/button_1"
                    android:textSize="40sp" />

                <Button
                    android:id="@+id/button2"
                    style="?android:attr/buttonStyle"
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    android:layout_weight="1"
                    android:background="#cdced1"
                    android:text="@string/button_2"
                    android:textSize="40sp" />

                <Button
                    android:id="@+id/button3"
                    style="?android:attr/buttonStyle"
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    android:layout_weight="1"
                    android:background="#cdced1"
                    android:text="@string/button_3"
                    android:textSize="40sp" />

                <Button
                    android:id="@+id/buttonList"
                    style="?android:attr/buttonStyle"
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    android:layout_weight="1"
                    android:autoText="false"
                    android:background="#FFdab9"
                    android:onClick="showDialog"
                    android:text="@string/button_list"
                    android:textSize="40sp" />
            </TableRow>

            <TableRow
                android:id="@+id/line5"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:layout_weight="1">

                <Button
                    android:id="@+id/button0"
                    style="?android:attr/buttonStyle"
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    android:layout_weight="1"
                    android:background="#cdced1"
                    android:text="@string/button_0"
                    android:textSize="40sp" />

                <Button
                    android:id="@+id/buttonPoint"
                    style="?android:attr/buttonStyle"
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    android:layout_weight="1"
                    android:background="#ff6347"
                    android:text="@string/button_point"
                    android:textSize="40sp" />

                <Button
                    android:id="@+id/buttonCopyright"
                    style="?android:attr/buttonStyle"
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    android:layout_weight="1"
                    android:background="#696969"
                    android:text="@string/button_copyright"
                    android:textColor="#800000"
                    android:textSize="40sp" />

                <Button
                    android:id="@+id/buttonEqual"
                    style="?android:attr/buttonStyle"
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    android:layout_weight="1"
                    android:background="#fa8e12"
                    android:text="@string/button_equal"
                    android:textSize="40sp" />
            </TableRow>

        </TableLayout>

    </LinearLayout>

</android.support.constraint.ConstraintLayout>

程式碼比較長,我學習xml的時候也挺苦惱的,不過還是耐心的看一下吧,多看幾個就沒那麼陌生了。

接下來是java的程式碼(MainActivity.java)  註釋加在文字的後面:

其中定義了

caculate()          // 實現計算功能的函式

setprecision(String s)        //  

showDialog()

showDevDialog()  四個公有方法(不包括監聽事件)

package com.era_huang;

import android.support.v7.app.AlertDialog;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.view.animation.AlphaAnimation;
import android.view.animation.Animation;
import android.view.animation.LinearInterpolator;
import android.widget.AdapterView;
import android.widget.ArrayAdapter;
import android.widget.Button;
import android.widget.Spinner;
import android.widget.TextView;
import java.math.BigDecimal;
import java.util.ArrayList;
import java.util.List;


public class MainActivity extends AppCompatActivity implements View.OnClickListener {
    // 定義所有按鍵
    Button button_0;
    Button button_1;
    Button button_2;
    Button button_3;
    Button button_4;
    Button button_5;
    Button button_6;
    Button button_7;
    Button button_8;
    Button button_9;
    Button button_point;
    Button button_add;
    Button button_sub;
    Button button_mul;
    Button button_div;
    Button button_del;
    Button button_c;
    Button button_equal;
    Button button_list;
    Button button_copyright;
    TextView terminal;  // 定義計算器顯示屏
    boolean pointLock1 = false;     // 防止一個數中有多個小數點,摁下一個點後就鎖住
    boolean pointLock2 = false;     // 防止在運算子後連線小數點
    boolean opraterLock = false;    // 防止兩個數之間輸入多於兩個運算子
    Spinner spinner;      // 定義了顯示屏上那個下拉選單,用來自動保留小數位數
    List<String> list;    // spinner中的子選項
    ArrayAdapter<String> adapter;
    int reservedDecimalNumber = 4;   // 預設保留的小數位數為4位小數
    BigDecimal result = BigDecimal.valueOf(0);  // java中的大數值,為了實現精確的計算,因為這是一個計算器

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        // 讓各個button連線對應元件
        button_0 = findViewById(R.id.button0);
        button_1 = findViewById(R.id.button1);
        button_2 = findViewById(R.id.button2);
        button_3 = findViewById(R.id.button3);
        button_4 = findViewById(R.id.button4);
        button_5 = findViewById(R.id.button5);
        button_6 = findViewById(R.id.button6);
        button_7 = findViewById(R.id.button7);
        button_8 = findViewById(R.id.button8);
        button_9 = findViewById(R.id.button9);
        button_point = findViewById(R.id.buttonPoint);
        button_equal = findViewById(R.id.buttonEqual);
        button_add = findViewById(R.id.buttonAdd);
        button_sub = findViewById(R.id.buttonSub);
        button_c = findViewById(R.id.buttonClean);
        button_mul = findViewById(R.id.buttonMul);
        button_div = findViewById(R.id.buttonDiv);
        button_del = findViewById(R.id.buttonDel);
        button_list = findViewById(R.id.buttonList);
        button_copyright = findViewById(R.id.buttonCopyright);

        terminal = findViewById(R.id.concle);
        // 建立顯示屏上的下拉選單
        spinner = findViewById(R.id.spinner);
        list = new ArrayList<>();

        list.add("4位小數");
        list.add("0位小數");
        list.add("1位小數");
        list.add("2位小數");
        list.add("6位小數");
        list.add("8位小數");
        adapter = new ArrayAdapter<>(this, android.R.layout.simple_list_item_1, list);
        adapter.setDropDownViewResource(android.R.layout.simple_list_item_single_choice);
        spinner.setAdapter(adapter);

        //監聽spinner
        spinner.setOnItemSelectedListener(new AdapterView.OnItemSelectedListener() {
            @Override
            public void onItemSelected(AdapterView<?> parent, View view, int position, long id) {
                String info = adapter.getItem(position);
                setprecision(info);
            }

            @Override
            public void onNothingSelected(AdapterView<?> parent) {

            }
        });


        // 監聽各個按鈕
        button_0.setOnClickListener(this);
        button_1.setOnClickListener(this);
        button_2.setOnClickListener(this);
        button_3.setOnClickListener(this);
        button_4.setOnClickListener(this);
        button_5.setOnClickListener(this);
        button_6.setOnClickListener(this);
        button_7.setOnClickListener(this);
        button_8.setOnClickListener(this);
        button_9.setOnClickListener(this);
        button_point.setOnClickListener(this);
        button_equal.setOnClickListener(this);
        button_add.setOnClickListener(this);
        button_sub.setOnClickListener(this);
        button_c.setOnClickListener(this);
        button_mul.setOnClickListener(this);
        button_div.setOnClickListener(this);
        button_del.setOnClickListener(this);
        button_list.setOnClickListener(this);
        button_copyright.setOnClickListener(this);
    }

    @Override
    public void onClick(View v) {
        // 按鍵按下陰影動畫
        Animation alphaAnimation = new AlphaAnimation(0.1f, 0);
        alphaAnimation.setInterpolator(new LinearInterpolator());
        alphaAnimation.setDuration(100);
        alphaAnimation.setRepeatCount(1);
        alphaAnimation.setRepeatMode(Animation.REVERSE);
        v.startAnimation(alphaAnimation);

        // 獲取顯示器上的字串
        String str = terminal.getText().toString();


        //判斷那個鍵被按下
        switch (v.getId()) {
            // 數值類按鍵
            case R.id.button0:
            case R.id.button1:
            case R.id.button2:
            case R.id.button3:
            case R.id.button4:
            case R.id.button5:
            case R.id.button6:
            case R.id.button7:
            case R.id.button8:
            case R.id.button9:
                //如果顯示器上顯示錯誤,摁下任意數字鍵歸零
                if (str.equals("錯誤"))
                    terminal.setText("0");
                //當有數字被按下,就不存在運算子連線point(小數點)的情況,鎖2開啟
                pointLock2 = false;
                opraterLock = false;
                String text1;

                // 顯示屏預設為0,如果為0顯示button對應的值,
                // 如果不為0,顯示屏上的字串與摁下的字串連線
                if (str.equals("0")) {
                    text1 = "" + ((Button) v).getText();
                } else {
                    text1 = str + ((Button) v).getText();
                }
                terminal.setText(text1);
                break;
            //小數點摁鍵,如果兩個鎖都開啟,就可以摁下小數點
            case R.id.buttonPoint:
                if (!pointLock1 && !pointLock2) {
                    String text2 = str + ((Button) v).getText();
                    terminal.setText(text2);
                    pointLock1 = true;
                }
                break;

            // 運算子按鍵,如果摁下,運算子後的為另一個數字,則可以打下一個小數點
            //所以鎖1開啟。而運算子後不能接小數點,所以鎖2鎖上,等打數字後,鎖2解開
            case R.id.buttonAdd:
            case R.id.buttonSub:
            case R.id.buttonMul:
            case R.id.buttonDiv:

                //如果前一位不為小數點才能摁下運算子按鍵
                if (str.charAt(str.length() - 1) != '.' && !opraterLock) {
                    pointLock1 = false;
                    pointLock2 = true;
                    opraterLock = true;
                    String text3 = str + ((Button) v).getText();
                    terminal.setText(text3);
                }
                break;

            //刪除鍵
            case R.id.buttonDel:
                //當小數點被刪除後,鎖1要開啟,不然無法再次輸入小數點,
                // 因為鎖1只有在摁下運算子後才會開啟
                if (str.charAt(str.length() - 1) == '.') {
                    pointLock1 = false;
                    pointLock2 = false;
                }
                //如果運算子被刪掉,opraterLock開啟,能夠再次輸入運算子
                //pointLock1要鎖上,以免在輸入運算子再將其刪除後,輸入一個數字即又可以輸入point的情況
                if (str.charAt(str.length() - 1) == '+' || str.charAt(str.length() - 1) == '-' ||
                        str.charAt(str.length() - 1) == '*' || str.charAt(str.length() - 1) == '/') {
                    opraterLock = false;
                    pointLock1 = true;
                }

                //如果長度大於一,返回去掉最後一個字元的字串
                if (str.length() > 1) {
                    str = str.substring(0, str.length() - 1);

                }
                //否則(即長度為1時直接設定顯示器中為0)
                else {
                    str = "0";
                }

                terminal.setText(str);
                break;

            //清屏操作所有鎖都開啟
            case R.id.buttonClean:
                str = "0";
                terminal.setText(str);
                pointLock1 = false;
                pointLock2 = false;
                opraterLock = false;
                break;
            //求運算結果
            case R.id.buttonEqual:
                char lastChar = str.charAt(str.length() - 1);
                if (lastChar != '.' && lastChar != '+' && lastChar != '-'
                        && lastChar != '*' && lastChar != '/') {
                    try {
                        caculate();
                    } catch (Exception e) {
                        str = "錯誤";
                        terminal.setText(str);
                    }
                }
                break;
            case R.id.buttonList:
                showDialog();
                break;
            case R.id.buttonCopyright:
                showDevDialog();
                break;
        }
    }


    public void caculate() {
        String expression = terminal.getText().toString();
        // 利用正則表示式將各個數值分開,提取到數組裡
        String[] expArr = expression.split("\\+|\\-|\\*|\\/");
        String[] operate = expression.split("\\d+|\\.");
        String[] foperate = new String[100];
        double[] numArr = new double[expArr.length];
        int index = 0, index1;
        double sum = 0;

        if (expression.charAt(0) == '-') {
            index1 = 1;
        } else {
            index1 = 0;
        }

        for (; index1 < expArr.length; index1++) {

            numArr[index1] = Double.parseDouble(expArr[index1]);
        }


        for (String mystr : operate) {
            if ((!mystr.equals("")) && (!mystr.equals(null))) {
                foperate[index] = mystr;
            }
            index++;
        }


        index = 0;
        for (String operater : foperate) {
            if (operater != null) {
                if (operater.equals("-")) {
                    numArr[index + 1] = -numArr[index + 1];
                }
                index++;
            }
        }


        index = 0;
        for (int i = 0; i < foperate.length; i++) {
            if (foperate[i] != null) {
                if (foperate[i].equals("*")) {
                    numArr[index + 1] = numArr[index] * numArr[index + 1];
                    numArr[index] = 0;
                    foperate[i] = null;
                } else if (foperate[i].equals("/")) {
                    numArr[index + 1] = numArr[index] / numArr[index + 1];
                    numArr[index] = 0;
                    foperate[i] = null;
                }
                index++;
            }
        }

        for (Double d : numArr) {
            sum += d;
        }
        BigDecimal accurateSum = BigDecimal.valueOf(sum).setScale(reservedDecimalNumber, BigDecimal.ROUND_HALF_UP);
        result = accurateSum;
        terminal.setText(String.valueOf(accurateSum));
    }

    public void setprecision(String s) {
        String formatS = s.substring(0, 1);
        reservedDecimalNumber = Integer.valueOf(formatS);
        if (!result.equals(BigDecimal.valueOf(0))) {
            terminal.setText(String.valueOf(result.setScale(reservedDecimalNumber, BigDecimal.ROUND_HALF_UP)));
        }
    }

    // 訊息提示框
    public void showDialog() {
        new AlertDialog.Builder(this)
                .setMessage("計算值記錄功能將在下次重大改良中開發,感謝大家支援!")
                .setPositiveButton("確定", null)
                .show();

    }
    // 訊息提示框
    public void showDevDialog() {
        new AlertDialog.Builder(this)
                .setMessage("開發者:Era_Huang\nQQ:1295289600\n傾盡所能為使用者開發最優質的應用")
                .setPositiveButton("確定", null)
                .show();
    }
}

加註釋真的加的心累,附上apk的度盤:

希望能和大家一起進步