溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Android Studio如何實現(xiàn)簡易計算器

發(fā)布時間:2021-05-07 14:11:41 來源:億速云 閱讀:440 作者:小新 欄目:移動開發(fā)

這篇文章給大家分享的是有關(guān)Android Studio如何實現(xiàn)簡易計算器的內(nèi)容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。

Android是什么

Android是一種基于Linux內(nèi)核的自由及開放源代碼的操作系統(tǒng),主要使用于移動設(shè)備,如智能手機和平板電腦,由美國Google公司和開放手機聯(lián)盟領(lǐng)導及開發(fā)。

這是一個運用網(wǎng)格布局來做的簡易計算器,可能沒有那么美觀,大家可以繼續(xù)完善

首先先看看成果吧

Android Studio如何實現(xiàn)簡易計算器

首先先建一個新的Project Calculator
然后先編寫顏色背景文件
創(chuàng)建一個gray.xml,哪里創(chuàng)建呢?如圖
在drawable下右擊,選擇new–Drawable resource file

Android Studio如何實現(xiàn)簡易計算器

Android Studio如何實現(xiàn)簡易計算器

第一個是文件名字,第二個屬性可以自己選擇,我們這里前兩個文件選擇shape,第三個文件選selector,附上顏色背景代碼

gray.xml

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">

 <corners android:radius="5dp"/>
 <solid android:color="#f9f9f9"/>
 <stroke
 android:width="2dp"
 android:color="#ffa600"/>
</shape>

orange.xml

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
 <corners android:radius="5dp"/> // 圓角
 <solid android:color="#F7B684"/> //顏色
</shape>

white.xml

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">


 <corners android:radius="5dp"/>
 <solid android:color="#ffffff"/>
 <stroke
 android:width="1dp"
 android:color="#ffa600"/>

</shape>

change.xml

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">


 <item android:drawable="@drawable/gray"/> //默認顏色
 <item android:drawable="@drawable/orange" android:state_pressed="true"/> //按下的改變的顏色
</selector>

這個是當你按下按鍵的時候按鍵會改變顏色

接下來就是布局文件了

activity_main.xml

我用的是表格布局,大家也可以用表格布局來寫,效果會好一些

<?xml version="1.0" encoding="utf-8"?>
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
 android:layout_width="match_parent"
 android:layout_height="match_parent"

 android:background="#D8ECF3">


 <TextView
 android:gravity="bottom|right"
 android:textSize="70dp"
 android:singleLine="true"
 android:layout_margin="15dp"
 android:layout_width="match_parent"
 android:layout_height="120dp"
 android:background="@drawable/white"
 android:id="@+id/textView"/>


 <TableRow
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 android:layout_marginTop="10dp">

 <Button
 android:id="@+id/btn_clean"
 android:layout_marginLeft="10dp"
 android:background="@drawable/orange"
 android:gravity="center"
 android:text="C"
 android:textSize="25sp" />

 <Button
 android:id="@+id/btn_del"
 android:layout_marginLeft="10dp"
 android:layout_span="2"
 android:background="@drawable/gray"
 android:gravity="center"
 android:text="Del"
 android:textSize="25sp" />

 <Button
 android:id="@+id/btn_divide"
 android:layout_marginLeft="10dp"
 android:layout_marginRight="10dp"
 android:background="@drawable/gray"
 android:gravity="center"
 android:layout_span="1"
 android:text="/"
 android:textSize="25sp" />

 </TableRow>

 <TableRow
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 android:layout_marginTop="10dp">

 <Button
 android:id="@+id/btn_7"
 android:layout_marginLeft="10dp"
 android:background="@drawable/white"
 android:gravity="center"
 android:text="7"
 android:textSize="25sp" />

 <Button
 android:id="@+id/btn_8"
 android:layout_marginLeft="10dp"
 android:background="@drawable/white"
 android:gravity="center"
 android:text="8"
 android:textSize="25sp" />

 <Button
 android:id="@+id/btn_9"
 android:layout_marginLeft="10dp"
 android:background="@drawable/white"
 android:gravity="center"
 android:text="9"
 android:textSize="25sp" />

 <Button
 android:id="@+id/btn_multiply"
 android:layout_marginLeft="10dp"
 android:layout_marginRight="10dp"
 android:background="@drawable/gray"
 android:gravity="center"
 android:text="*"
 android:textSize="25sp" />
 </TableRow>

 <TableRow
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 android:layout_marginTop="10dp">

 <Button
 android:id="@+id/btn_4"
 android:layout_marginLeft="10dp"
 android:background="@drawable/white"
 android:gravity="center"
 android:text="4"
 android:textSize="25sp" />

 <Button
 android:id="@+id/btn_5"
 android:layout_marginLeft="10dp"
 android:background="@drawable/white"
 android:gravity="center"
 android:text="5"
 android:textSize="25sp" />

 <Button
 android:id="@+id/btn_6"
 android:layout_marginLeft="10dp"
 android:background="@drawable/white"
 android:gravity="center"
 android:text="6"
 android:textSize="25sp" />

 <Button
 android:id="@+id/btn_add"
 android:layout_marginLeft="10dp"
 android:layout_marginRight="10dp"
 android:background="@drawable/gray"
 android:gravity="center"
 android:text="+"
 android:textSize="25sp" />
 </TableRow>

 <TableRow
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 android:layout_marginTop="10dp">

 <Button
 android:id="@+id/btn_1"
 android:layout_marginLeft="10dp"
 android:background="@drawable/white"
 android:gravity="center"
 android:text="1"
 android:textSize="25sp" />

 <Button
 android:id="@+id/btn_2"
 android:layout_marginLeft="10dp"
 android:background="@drawable/white"
 android:gravity="center"
 android:text="2"
 android:textSize="25sp" />

 <Button
 android:id="@+id/btn_3"
 android:layout_marginLeft="10dp"
 android:background="@drawable/white"
 android:gravity="center"
 android:text="3"
 android:textSize="25sp" />

 <Button
 android:id="@+id/btn_minus"
 android:layout_marginLeft="10dp"
 android:layout_marginRight="10dp"
 android:background="@drawable/gray"
 android:gravity="center"
 android:text="-"
 android:textSize="25sp" />

 </TableRow>


 <TableRow
 android:layout_width="wrap_content"
 android:layout_height="match_parent"
 android:layout_marginTop="10dp">

 <Button
 android:id="@+id/btn_0"
 android:layout_marginLeft="10dp"
 android:layout_span="2"
 android:background="@drawable/white"
 android:gravity="center"
 android:text="0"
 android:textSize="25sp" />

 <Button
 android:id="@+id/btn_point"
 android:layout_marginLeft="10dp"
 android:layout_span="1"
 android:background="@drawable/white"
 android:gravity="center"
 android:text="."
 android:textSize="25sp" />

 <Button
 android:id="@+id/btn_equal"
 android:layout_marginLeft="10dp"
 android:layout_marginRight="10dp"
 android:layout_span="1"
 android:background="@drawable/gray"
 android:gravity="center"
 android:text="="
 android:textSize="25sp" />


 </TableRow>


</TableLayout>

接下來就是MainActivity.java

package com.example.calculator;

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 {

 Button btn_clean,btn_del,btn_divide,btn_0,btn_1,btn_2,btn_3,btn_4,btn_5,btn_6,btn_7,btn_8,btn_9,
 btn_multiply,btn_add,btn_minus,btn_point,btn_equal;
 TextView textView;
 boolean clear_flag;  //清空標識
 @Override
 protected void onCreate(Bundle savedInstanceState) {
 super.onCreate (savedInstanceState);
 setContentView (R.layout.activity_main);
 btn_0 = findViewById(R.id.btn_0); //初始化
 btn_1 = findViewById(R.id.btn_1);
 btn_2 = findViewById(R.id.btn_2);
 btn_3 = findViewById(R.id.btn_3);
 btn_4 = findViewById(R.id.btn_4);
 btn_5 = findViewById(R.id.btn_5);
 btn_6 = findViewById(R.id.btn_6);
 btn_7 = findViewById(R.id.btn_7);
 btn_8 = findViewById(R.id.btn_8);
 btn_9 = findViewById(R.id.btn_9);
 btn_multiply = findViewById(R.id.btn_multiply);
 btn_divide = findViewById(R.id.btn_divide);
 btn_add = findViewById(R.id.btn_add);
 btn_minus = findViewById(R.id.btn_minus);
 btn_point = findViewById(R.id.btn_point);
 btn_del =findViewById(R.id.btn_del);
 btn_equal = findViewById(R.id.btn_equal);
 btn_clean = findViewById(R.id.btn_clean);

 textView = findViewById(R.id.textView);

 btn_0.setOnClickListener(this); //設(shè)置按鈕的點擊事件
 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_minus.setOnClickListener(this);
 btn_multiply.setOnClickListener(this);
 btn_del.setOnClickListener(this);
 btn_divide.setOnClickListener(this);
 btn_point.setOnClickListener(this);
 btn_add.setOnClickListener(this);
 btn_equal.setOnClickListener(this);
 btn_clean.setOnClickListener(this);
 }

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

 case R.id.btn_add:
 case R.id.btn_minus:
 case R.id.btn_multiply:
 case R.id.btn_divide:
 if(clear_flag){
  clear_flag=false;
  textView.setText("");
 }
 textView.setText(str+" "+((Button)v).getText()+" ");
 break;
 case R.id.btn_del:
 if(clear_flag){
  clear_flag=false;
  textView.setText ("");
 }else if (str != null && !str.equals ("")){
  textView.setText(str.substring(0,str.length()-1)); //刪除一個字符
 }
 break;
 case R.id.btn_clean:
 clear_flag=false;
 str = "";
 textView.setText(""); //清空文本內(nèi)容
 break;
 case R.id.btn_equal:
 getResult(); //獲取結(jié)果
 break;
 }
 }

 private void getResult() {  //算法
 String s = textView.getText().toString();
 if(s == null || s.equals ("")){
 return;
 }
 if (!s.contains ("")){
 return;
 }
 if (clear_flag){
 clear_flag=false;
 return;
 }
 clear_flag=true;

 String str1 = s.substring(0,s.indexOf(" "));  // 獲取到運算符前面的字符
 String str_y = s.substring(s.indexOf(" ")+1,s.indexOf(" ")+2); //獲取到運算符
 String str2 = s.substring(s.indexOf(" ")+ 3);  //獲取到運算符后面的字符

 double result = 0;
 if (!str1.equals ("") && !str2.equals ("")){
 double num1 = Double.parseDouble(str1); //將str1、str2強制轉(zhuǎn)化為double類型
 double num2 = Double.parseDouble(str2);

 if (str_y.equals ("+")){
 result = num1 + num2;
 }else if (str_y.equals ("-")){
 result = num1 - num2;
 }else if (str_y.equals ("÷")){
 if (num2 == 0){
  result = 0;
 }else {
  result = num1/num2;
 }
 }else if (str_y.equals ("*")){
 result = num1*num2;
 }
 if (!str1.contains (".") && !str2.contains (".") && !s.equals ("÷")){
 int k = (int) result; //強制轉(zhuǎn)換
 textView.setText (k);
 }else{
 textView.setText (result+"");
 }
 }else if (!str1.equals ("") && str2.equals ("")){
 textView.setText (s);
 }else if (str1.equals ("") && !str2.equals ("")){
 double num2 = Double.parseDouble(str2);
 if (s.equals ("+")){
 result = 0 + num2;
 }else if (s.equals("-")){
 result = 0 - num2;
 }else if (s.equals("×")){
 result = 0;
 }else if (s.equals("÷")){
 result = 0;
 }
 if (!str2.contains (".")) {
 int r = (int) result;
 textView.setText (r + "");
 } else {
 textView.setText (result + "");
 }
 } else {
 textView.setText ("");
 }
 }
}

感謝各位的閱讀!關(guān)于“Android Studio如何實現(xiàn)簡易計算器”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI