簡單計算器 安卓 Android 作業

来源:https://www.cnblogs.com/wonker/archive/2019/04/14/10706768.html
-Advertisement-
Play Games

Android老師佈置的課程作業——簡單計算器 功能要求實現四則運算,參考界面見下圖: 首先給各位老鐵提供apk安裝包以及項目壓縮包,略表誠意~ github地址:https://github.com/wonke/Calculator 使用GirdLayout比較適合計算器這種規則的佈局,每行有幾個 ...


Android老師佈置的課程作業——簡單計算器

功能要求實現四則運算,參考界面見下圖:

 

首先給各位老鐵提供apk安裝包以及項目壓縮包,略表誠意~

github地址:https://github.com/wonke/Calculator

使用GirdLayout比較適合計算器這種規則的佈局,每行有幾個按鈕幾乎都是固定的,遇到一個按鈕需要占兩個常規按鈕空間時,使用android:layout_columnSpan="2"屬性即可解決。

 

Layout佈局代碼:

<?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">

    <TextView

        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:height="30dp"
        android:gravity="center"
        android:text="@string/title"
        android:textAppearance="@style/TextAppearance.AppCompat.Large" />

    <GridLayout
        android:id="@+id/grid_layout"
        android:layout_width="match_parent"
        android:layout_height="500sp"
        android:background="#ece7e7"
        android:alignmentMode="alignBounds"
        android:columnCount="4"
        android:orientation="horizontal"
        android:rowCount="10"
        android:useDefaultMargins="false">

        <TextView
            android:id="@+id/contentText"
            android:background="@drawable/textview_border"
            android:gravity="end"
            android:textSize="50sp"

            android:layout_columnSpan="4"
            android:layout_columnWeight="1"
            android:layout_rowWeight="5"
            />

        <Button
            android:id="@+id/allClear"
            android:textSize="30sp"
            android:background="@drawable/button_border"
            android:layout_rowWeight="1"
            android:layout_columnWeight="1"
            android:text="CE" />

        <Button
            android:id="@+id/divide"
            android:textSize="30sp"
            android:background="@drawable/button_border"
            android:layout_rowWeight="1"
            android:layout_columnWeight="1"
            android:text="÷" />

        <Button
            android:id="@+id/multiply"
            android:layout_rowWeight="1"
            android:layout_columnWeight="1"
            android:background="@drawable/button_border"
            android:text="×"
            android:textSize="30sp" />

        <Button
            android:id="@+id/clear"
            android:layout_rowWeight="1"
            android:layout_columnWeight="1"
            android:background="@drawable/button_border"
            android:text="C"
            android:textSize="30sp" />

        <Button
            android:id="@+id/b7"
            android:layout_rowWeight="1"
            android:layout_columnWeight="1"
            android:background="@drawable/button_border"
            android:text="7"
            android:textSize="30sp" />

        <Button
            android:id="@+id/b8"
            android:layout_rowWeight="1"
            android:layout_columnWeight="1"
            android:background="@drawable/button_border"
            android:text="8"
            android:textSize="30sp" />

        <Button
            android:id="@+id/b9"
            android:layout_rowWeight="1"
            android:layout_columnWeight="1"
            android:background="@drawable/button_border"
            android:text="9"
            android:textSize="30sp" />

        <Button
            android:id="@+id/add"
            android:layout_rowWeight="1"
            android:layout_columnWeight="1"
            android:background="@drawable/button_border"
            android:text="+"
            android:textSize="30sp" />

        <Button
            android:id="@+id/b4"
            android:layout_rowWeight="1"
            android:layout_columnWeight="1"
            android:background="@drawable/button_border"
            android:text="4"
            android:textSize="30sp" />

        <Button
            android:id="@+id/b5"
            android:layout_rowWeight="1"
            android:layout_columnWeight="1"
            android:background="@drawable/button_border"
            android:text="5"
            android:textSize="30sp" />

        <Button
            android:id="@+id/b6"
            android:layout_rowWeight="1"
            android:layout_columnWeight="1"
            android:background="@drawable/button_border"
            android:text="6"
            android:textSize="30sp" />

        <Button
            android:id="@+id/subtract"
            android:layout_rowWeight="1"
            android:layout_columnWeight="1"
            android:background="@drawable/button_border"
            android:text="-"
            android:textSize="30sp" />

        <Button
            android:id="@+id/b1"
            android:layout_rowWeight="1"
            android:layout_columnWeight="1"
            android:background="@drawable/button_border"
            android:text="1"
            android:textSize="30sp" />

        <Button
            android:id="@+id/b2"
            android:layout_rowWeight="1"
            android:layout_columnWeight="1"
            android:background="@drawable/button_border"
            android:text="2"
            android:textSize="30sp" />

        <Button
            android:id="@+id/b3"
            android:layout_rowWeight="1"
            android:layout_columnWeight="1"
            android:background="@drawable/button_border"
            android:text="3"
            android:textSize="30sp" />

        <Button
            android:id="@+id/root"
            android:layout_rowWeight="1"
            android:layout_columnWeight="1"
            android:background="@drawable/button_border"
            android:text="√ ̄"
            android:textSize="30sp" />

        <Button
            android:id="@+id/b0"
            android:layout_rowWeight="1"
            android:layout_columnSpan="2"
            android:layout_columnWeight="1"
            android:background="@drawable/button_border"
            android:text="0"
            android:textSize="30sp" />

        <Button
            android:id="@+id/point"
            android:layout_rowWeight="1"
            android:layout_columnWeight="1"
            android:background="@drawable/button_border"
            android:text="."
            android:textSize="30sp" />

        <Button
            android:id="@+id/equal"
            android:layout_rowWeight="1"
            android:layout_columnWeight="1"
            android:background="@drawable/button_border"
            android:text="="
            android:textSize="30sp" />
    </GridLayout>

</LinearLayout>

MainActivity邏輯處理代碼:

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 {

    private Button[] buttons = new Button[18];
    private int[] ids = new int[]{R.id.allClear,R.id.divide,R.id.multiply,R.id.clear,R.id.b0,R.id.b1,
            R.id.b2,R.id.b3,R.id.b4,R.id.b5,R.id.b6,R.id.b7,R.id.b8,R.id.b9,R.id.add,R.id.subtract,
            R.id.equal,R.id.point};

    private TextView textView;
    private String expression = "";
    private boolean end = false;
    private int countOperate=2;

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

       for (int i=0; i<ids.length;i++){
           buttons[i] = findViewById(ids[i]);
           buttons[i].setOnClickListener(this);
       }
        textView = (TextView)findViewById(R.id.contentText);
    }
    public void onClick(View view) {
        int id = view.getId();
        Button button = (Button)view.findViewById(id);
        String current = button.getText().toString();
        if(end){ //如果上一次算式已經結束,則先清零
            expression = "";
            end = false;
        }
        if(current.equals("CE")){ //如果為CE則清零
            expression = "";
            countOperate=0;
        }else if(current.equals("C")){ //如果點擊退格
            if(expression.length()>1){ //算式長度大於1
                expression = expression.substring(0,expression.length()-1);//退一格
                int i = expression.length()-1;
                char tmp = expression.charAt(i); //獲得最後一個字元
                char tmpFront = tmp;
                for(;i>=0;i--){ //向前搜索最近的 +-*/和.,並退出
                    tmpFront = expression.charAt(i);
                    if(tmpFront=='.'||tmpFront=='+'||tmpFront=='-'||tmpFront=='×'||tmpFront=='÷'){
                        break;
                    }
                }
                if(tmp>='0'&&tmp<='9'){ //最後一個字元為數字,則識別數賦值為0
                    countOperate=0;
                }else if(tmp==tmpFront&&tmpFront!='.') countOperate=2; //如果為+-*/,賦值為2
                else if(tmpFront=='.') countOperate=1; //如果前面有小數點賦值為1
            }else if(expression.length()==1){
                expression = "";
            }
        }else if(current.equals(".")){
            if(expression.equals("")||countOperate==2){
                expression+="0"+current;
                countOperate = 1;  //小數點按過之後賦值為1
            }
            if(countOperate==0){
                expression+=".";
                countOperate = 1;
            }
        }else if(current.equals("+")||current.equals("-")||current.equals("×")||current.equals("÷")){
            if(countOperate==0){
                expression+=current;
                countOperate = 2;  //  +-*/按過之後賦值為2
            }
        }else if(current.equals("=")){ //按下=時,計算結果並顯示
            double result = (double) Math.round(count()*100)/100;
            expression+="="+result;
            end = true; //此次計算結束
        }
        else{//此處是當退格出現2+0時,用current的值替代0
            if(expression.length()>=1){
                char tmp1 = expression.charAt(expression.length()-1);
                if(tmp1=='0'&&expression.length()==1){
                    expression = expression.substring(0,expression.length()-1);
                }
                else if(tmp1=='0'&&expression.length()>1){
                    char tmp2 = expression.charAt(expression.length()-2);
                    if(tmp2=='+'||tmp2=='-'||tmp2=='×'||tmp2=='÷'){
                        expression = expression.substring(0,expression.length()-1);
                    }
                }
            }
            expression+=current;
            if(countOperate==2||countOperate==1) countOperate=0;
        }
        //    Toast.makeText(this, "countOperate:"+countOperate, Toast.LENGTH_SHORT).show();
        textView.setText(expression); //顯示出來
    }
    //計算邏輯,求expression表達式的值
    private double count(){
        double result=0;
        double tNum=1,lowNum=0.1,num=0;
        char tmp=0;
        int operate = 1; //識別+-*/,為+時為正數,為-時為負數,為×時為-2/2,為/時為3/-3;
        boolean point = false;
        for(int i=0;i<expression.length();i++){ //遍歷表達式
            tmp = expression.charAt(i);
            if(tmp=='.'){ //因為可能出現小數,此處進行判斷是否有小數出現
                point = true;
                lowNum = 0.1;
            }else if(tmp=='+'||tmp=='-'){
                if(operate!=3&&operate!=-3){ //此處判斷通用,適用於+-*
                    tNum *= num;
                }else{ //計算/
                    tNum /= num;
                }
                //    Toast.makeText(this, "tNum = "+tNum, Toast.LENGTH_SHORT).show();
                if(operate<0){ //累加入最終的結果
                    result -= tNum;
                }else{
                    result += tNum;
                }
                operate = tmp=='+'?1:-1;
                num = 0;
                tNum = 1;
                point = false;
            }else if(tmp=='×'){
                if(operate!=3&&operate!=-3){
                    tNum *= num;
                }else{
                    tNum /= num;
                }
                operate = operate<0?-2:2;
                point = false;
                num = 0;
            }else if(tmp=='÷'){
                if(operate!=3&&operate!=-3){
                    tNum *= num;
                }else{
                    tNum /= num;
                }
                operate = operate<0?-3:3;
                point = false;
                num = 0;
            }else{
                //讀取expression中的每個數字,doube型
                if(!point){
                    num = num*10+tmp-'0';
                }else{
                    num += (tmp-'0')*lowNum;
                    lowNum*=0.1;
                }
            }
        }
        //迴圈遍歷結束,計算最後一個運算符後面的數
        if(operate!=3&&operate!=-3){
            tNum *= num;
        }else{
            tNum /= num;
        }
        //    Toast.makeText(this, "tNum = "+tNum, Toast.LENGTH_SHORT).show();
        if(operate<0){
            result -= tNum;
        }else{
            result += tNum;
        }
        //返回最後的結果
        return result;
    }

}

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 我最初裝雙系統的時候也遇到了許多問題,基本上別人能遇到的問題我都遇到了,這裡整理了我當時的解決方案。(當時的ubuntu版本為16版) 當時參考的是這篇安裝教程: "Win10/Ubuntu雙系統安裝 CSDN" [TOC] 1.win10重啟無法進入BIOS 按照教程上的要求製作好了裝機U盤,可重 ...
  • 在此處只給出find的基本用法示例,都是平時我個人非常常用的搜索功能。如果有不理解的部分,則看後面的 "find運行機制詳解" 對於理論的說明,也建議在看完這些基本示例後閱讀一遍理論說明,它是本人翻譯自find的man文檔並加上了個人的理解。另外,在該理論說明結束後,還有find深入用法示例和分析。 ...
  • /etc/passwd 用戶信息文件 /etc/fstab 開機後自動掛在文件 /etc/profile 修改別名、環境變數/root/.bashrc 別名存放位置/etc/selinux/config SElinux配置/etc/sysconfig/i18n 字元集配置 export LANG=e ...
  • "多節點通過PPP連接,節點/用戶/客戶機之間互相訪問ping" 轉載註明來源: "本文鏈接" 來自 "osnosn的博客" ,寫於 2019 04 14. 有A, B, C 三台客戶機,通過ppp虛擬撥號連接到伺服器。 搜索"ppp over ssh" "VPN PPP SSH Mini HOWT ...
  • ...
  • MySQL視圖介紹,常見視圖操作:基於單表創建視圖,基於多表創建視圖;更新視圖結構與數據,刪除視圖。 ...
  • 一,報錯原因及分析 mysql的這個報錯的原因是mysql服務沒有正確啟動就是mysqld這個程式。 mysql要想運行需要mysql和mysqld兩個都啟動才行 二,解決辦法 右鍵我的電腦——》點擊管理——》打開這個頁面後在服務中找到Mysql點擊啟動,若無法啟動則是路徑不對,右鍵點擊屬性查看預設 ...
  • 各版本下載地址:http://download.redis.io/releases,本教程使用版本為redis-5.0.4。 附錄: (一)執行make命令報錯解決方案: 報錯內容: 解決方案: 在終端輸入如下命令,安裝Xcode命令行工具: 安裝完成後,繼續從make命令往下執行即可。 註:如有錯 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...