亚洲精品久久久中文字幕-亚洲精品久久片久久-亚洲精品久久青草-亚洲精品久久婷婷爱久久婷婷-亚洲精品久久午夜香蕉

您的位置:首頁技術文章
文章詳情頁

android studio實現簡單的計算器(無bug)

瀏覽:72日期:2022-09-22 17:17:26

本文實例為大家分享了android studio實現簡單計算器的具體代碼,供大家參考,具體內容如下

1.效果圖

android studio實現簡單的計算器(無bug)

2布局代碼

<?xml version='1.0' encoding='utf-8'?><LinearLayout xmlns:android='http://schemas.android.com/apk/res/android' android:layout_width='match_parent' android:layout_height='match_parent' android:orientation='vertical' android:background='@drawable/jsj1'> <TextView android:layout_width='match_parent' android:layout_height='wrap_content' android:text='計算器' android:textSize='20dp' android:gravity='center' android:textColor='#EE4000'/> <TextView android:layout_width='match_parent' android:layout_height='wrap_content' android:text='輸入數字'/> <EditText android: android:layout_width='match_parent' android:layout_height='wrap_content'/> <TextView android:layout_width='match_parent' android:layout_height='wrap_content' android:text='運算結果'/> <EditText android: android:layout_width='match_parent' android:layout_height='wrap_content'/> <LinearLayout android:layout_width='match_parent' android:layout_height='wrap_content' android:orientation='horizontal'> <Button android:layout_marginLeft='5dp' android: android:layout_width='88dp' android:layout_height='100dp' android:text='C' android:textSize='20dp' android:padding='5dp' android:background='@drawable/qqqqqqqqqq'/> <Button android: android:layout_width='88dp' android:layout_height='100dp' android:text='÷' android:textSize='20dp' android:padding='5dp' android:background='@drawable/qqqqqqqqqq'/> <Button android: android:layout_width='88dp' android:layout_height='100dp' android:text='×' android:textSize='20dp' android:padding='5dp' android:background='@drawable/qqqqqqqqqq'/> <Button android: android:layout_width='88dp' android:layout_height='100dp' android:text='Cx' android:textSize='20dp' android:padding='5dp' android:background='@drawable/qqqqqqqqqq'/> </LinearLayout> <LinearLayout android:layout_width='match_parent' android:layout_height='wrap_content' android:orientation='horizontal'> <Button android:layout_marginLeft='5dp' android: android:layout_width='88dp' android:layout_height='100dp' android:text='7' android:textSize='20dp' android:padding='5dp' android:background='@drawable/sssssssssssssss'/> <Button android: android:layout_width='88dp' android:layout_height='100dp' android:text='8' android:textSize='20dp' android:padding='5dp' android:background='@drawable/sssssssssssssss'/> <Button android: android:layout_width='88dp' android:layout_height='100dp' android:text='9' android:textSize='20dp' android:padding='5dp' android:background='@drawable/sssssssssssssss'/> <Button android: android:layout_width='88dp' android:layout_height='100dp' android:text='-' android:textSize='20dp' android:padding='5dp' android:background='@drawable/qqqqqqqqqq'/> </LinearLayout> <LinearLayout android:layout_width='match_parent' android:layout_height='wrap_content' android:orientation='horizontal'> <Button android:layout_marginLeft='5dp' android: android:layout_width='88dp' android:layout_height='100dp' android:text='4' android:textSize='20dp' android:padding='5dp' android:background='@drawable/sssssssssssssss'/> <Button android: android:layout_width='88dp' android:layout_height='100dp' android:text='5' android:textSize='20dp' android:padding='5dp' android:background='@drawable/sssssssssssssss'/> <Button android: android:layout_width='88dp' android:layout_height='100dp' android:text='6' android:textSize='20dp' android:padding='5dp' android:background='@drawable/sssssssssssssss'/> <Button android: android:layout_width='88dp' android:layout_height='100dp' android:text='+' android:textSize='20dp' android:padding='5dp' android:background='@drawable/qqqqqqqqqq'/> </LinearLayout> <LinearLayout android:layout_width='match_parent' android:layout_height='wrap_content' android:orientation='horizontal'> <Button android:layout_marginLeft='5dp' android: android:layout_width='88dp' android:layout_height='100dp' android:text='1' android:textSize='20dp' android:padding='5dp' android:background='@drawable/sssssssssssssss'/> <Button android: android:layout_width='88dp' android:layout_height='100dp' android:text='2' android:textSize='20dp' android:padding='5dp' android:background='@drawable/sssssssssssssss'/> <Button android: android:layout_width='88dp' android:layout_height='100dp' android:text='3' android:textSize='20dp' android:padding='5dp' android:background='@drawable/sssssssssssssss'/> <Button android: android:layout_width='88dp' android:layout_height='100dp' android:text='.' android:textSize='20dp' android:padding='5dp' android:background='@drawable/qqqqqqqqqq'/> </LinearLayout> <LinearLayout android:layout_width='match_parent' android:layout_height='wrap_content' android:orientation='horizontal'> <Button android:layout_marginLeft='5dp' android: android:layout_width='88dp' android:layout_height='100dp' android:text='0' android:textSize='20dp' android:padding='5dp' android:background='@drawable/sssssssssssssss'/> <Button android: android:layout_width='265dp' android:layout_height='100dp' android:text='=' android:textSize='20dp' android:padding='5dp' android:background='#6495ED'/> </LinearLayout></LinearLayout>

3.邏輯代碼

package com.example.myzhuoye;import android.os.Bundle;import android.view.View;import android.widget.Button;import android.widget.EditText;import androidx.annotation.Nullable;import androidx.appcompat.app.AppCompatActivity;public class JiSuanJi extends AppCompatActivity implements View.OnClickListener { //結果 private EditText ET001,ET002; //數字0-9 private Button btn0018, btn0013,btn0014,btn0015,btn009,btn0010,btn0011,btn005,btn006,btn007; //運算符,+,-,×,÷,.,=;清除,返回 private Button btn0012,btn008,btn003,btn002,btn0019,btn0016,btn001,btn004; private String text = '';//保存輸入的數字和符號 private Double result = 0.0;//輸出結果 @Override protected void onCreate(@Nullable Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.layout4); //結果 ET001=(EditText)findViewById(R.id.ET001); ET002=(EditText)findViewById(R.id.ET002); //數字0-9 btn0013=(Button)findViewById(R.id.btn0013); btn0014=(Button)findViewById(R.id.btn0014); btn0015=(Button)findViewById(R.id.btn0015); btn009=(Button)findViewById(R.id.btn009); btn0010=(Button)findViewById(R.id.btn0010); btn0011=(Button)findViewById(R.id.btn0011); btn005=(Button)findViewById(R.id.btn005); btn006=(Button)findViewById(R.id.btn006); btn007=(Button)findViewById(R.id.btn007); btn0018=(Button)findViewById(R.id.btn0018); //運算符 btn004=(Button)findViewById(R.id.btn004); btn0012=(Button)findViewById(R.id.btn0012); btn008=(Button)findViewById(R.id.btn008); btn003=(Button)findViewById(R.id.btn003); btn002=(Button)findViewById(R.id.btn002); btn0019=(Button)findViewById(R.id.btn0019); btn0016=(Button)findViewById(R.id.btn0016); btn001=(Button)findViewById(R.id.btn001); //添加點擊事件 btn0013.setOnClickListener((View.OnClickListener) this); btn0014.setOnClickListener((View.OnClickListener) this); btn0015.setOnClickListener((View.OnClickListener) this); btn009.setOnClickListener((View.OnClickListener) this); btn0010.setOnClickListener((View.OnClickListener) this); btn0011.setOnClickListener((View.OnClickListener) this); btn005.setOnClickListener((View.OnClickListener) this); btn006.setOnClickListener((View.OnClickListener) this); btn007.setOnClickListener((View.OnClickListener) this); btn0018.setOnClickListener((View.OnClickListener) this); btn0012.setOnClickListener((View.OnClickListener) this); btn008.setOnClickListener((View.OnClickListener) this); btn003.setOnClickListener((View.OnClickListener) this); btn002.setOnClickListener((View.OnClickListener) this); btn0019.setOnClickListener((View.OnClickListener) this); btn0016.setOnClickListener((View.OnClickListener) this); btn001.setOnClickListener((View.OnClickListener) this); btn004.setOnClickListener((View.OnClickListener) this); } @Override public void onClick(View v) { String string=ET001.getText().toString(); switch (v.getId()){ case R.id.btn0018://0 num(0); break; case R.id.btn0013://1 num(1); break; case R.id.btn0014://2 num(2); break; case R.id.btn0015://3 num(3); break; case R.id.btn009://4 num(4); break; case R.id.btn0010://5 num(5); break; case R.id.btn0011://6 num(6); break; case R.id.btn005://7 num(7); break; case R.id.btn006://8 num(8); break; case R.id.btn007://9 num(9); break; case R.id.btn0019://. dot(); break; case R.id.btn0012://+ add(); break; case R.id.btn008://- sub(); break; case R.id.btn003://'*' multiply(); break; case R.id.btn002://除 divide(); break; case R.id.btn001://清除 clear(); break; case R.id.btn004://返回 back(); break; //計算結果 case R.id.btn0016://結果 result(); break; default: break; } ET001.setText(text); ET002.setText(String.valueOf(result)); } private void num(int i) { text = text + String.valueOf(i); } private void dot() { int a=text.length(); String s01='+'; String s02='-'; String s03='×'; String s04='÷'; String s05='.'; if (a!=0) { String s=text.substring(a-1,a); String s0=text.substring(0,a-1); if (s01.equals(s) || s02.equals(s) || s03.equals(s) || s04.equals(s) || s05.equals(s)) { text = s0+'.'; }else { text += '.'; } } else { text = ''; result =0.0; ET001.setText(''); ET002.setText(''); } } private void clear() { text = ''; result =0.0; ET001.setText(''); ET002.setText(''); } private void back() { if (text.length()!=0){ String str = text.substring(0, text.length()-1); text = str; } ; } private void add() { int a=text.length(); String s01='+'; String s02='-'; String s03='×'; String s04='÷'; String s05='.'; if (a!=0) { String s=text.substring(a-1,a); String s0=text.substring(0,a-1); if (s01.equals(s) || s02.equals(s) || s03.equals(s) || s04.equals(s) || s05.equals(s)) { text = s0+'+'; }else { text += '+'; } } else { text = ''; result =0.0; ET001.setText(''); ET002.setText(''); } } private void sub() { int a=text.length(); String s01='+'; String s02='-'; String s03='×'; String s04='÷'; String s05='.'; if (a!=0) { String s=text.substring(a-1,a); String s0=text.substring(0,a-1); if (s01.equals(s) || s02.equals(s) || s03.equals(s) || s04.equals(s) || s05.equals(s)) { text = s0+'-'; }else { text += '-'; } } else { text = ''; result =0.0; ET001.setText(''); ET002.setText(''); } } private void multiply() { int a=text.length(); String s01='+'; String s02='-'; String s03='×'; String s04='÷'; String s05='.'; if (a!=0) { String s=text.substring(a-1,a); String s0=text.substring(0,a-1); if (s01.equals(s) || s02.equals(s) || s03.equals(s) || s04.equals(s) || s05.equals(s)) { text = s0+'×'; }else { text += '×'; } } else { text = ''; result =0.0; ET001.setText(''); ET002.setText(''); } } private void divide() { int a=text.length(); String s01='+'; String s02='-'; String s03='×'; String s04='÷'; String s05='.'; if (a!=0) { String s=text.substring(a-1,a); String s0=text.substring(0,a-1); if (s01.equals(s) || s02.equals(s) || s03.equals(s) || s04.equals(s) || s05.equals(s)) { text = s0+'÷'; }else { text += '÷'; } } else { text = ''; result =0.0; ET001.setText(''); ET002.setText(''); } } //計算輸出結果 private void result() { result = testOperation(text); } public Double testOperation(String s){ //分割字符然后放進數組 String s1 =s.replace('+','-'); String[] str = s1.split('-'); double total1=0; //先遍歷數組,把里面的乘除結果算出來 for(String str1:str){ if(str1.contains('×')||str1.contains('÷')){ double total = 0; for(int i =0;i<str1.length();){ int count =1; a:for(int j =i+1;j<str1.length();j++){ char c =str1.charAt(j); if(c==’×’||c==’÷’){ break a; }else{ count++; } } //將數字截取出來 String s2 =str1.substring(i,i+count); double d = Double.parseDouble(s2); if(i==0){ total = d; }else{ char c1 = str1.charAt(i-1); if(c1==’×’){ total*=d; }else if(c1==’÷’){ //如果除數為0,直接返回null; if(d == 0) return null; total/=d; } } i+=count+1; } s= s.replace(str1, total+''); } } //進行加減運算 for(int i =0;i<s.length();i++){ int count =1; a:for(int j=i+1;j<s.length();j++){ char c = s.charAt(j); if(c==’+’||c==’-’){ break a; }else{ count++; } } String s3= s.substring(i,i+count); double d2 = Double.parseDouble(s3); if(i==0){ total1 = d2; }else{ char c = s.charAt(i-1); if(c==’+’){ total1+=d2; }else if(c==’-’){ total1-=d2; } } i+=count; } return total1; }}

4.XML文件

<?xml version='1.0' encoding='utf-8'?><shape xmlns:android='http://schemas.android.com/apk/res/android'> <gradient android:startColor='#c0000000' android:endColor='#c0000000' android:angle='90' /><!--背景顏色漸變 angle為漸變角度--> <solid android:color=' #8DEEEE' /><!-- 背景填充顏色 --> <stroke android: android:color='#ff000000' /><!-- 描邊,邊框寬度、顏色 --> <corners android:radius='0dp' /><!-- 邊角圓弧的半徑 --> <padding android:left='0dp' android:top='0dp' android:right='0dp' android:bottom='0dp' /><!-- 四周留出來的空白 --></shape>

<?xml version='1.0' encoding='utf-8'?><shape xmlns:android='http://schemas.android.com/apk/res/android'><gradient android:startColor='#c0000000' android:endColor='#c0000000' android:angle='90' /><!--背景顏色漸變 angle為漸變角度--><solid android:color='#00FFFF' /><!-- 背景填充顏色 --><stroke android: android:color='#ff000000' /><!-- 描邊,邊框寬度、顏色 --><corners android:radius='0dp' /><!-- 邊角圓弧的半徑 --><padding android:left='0dp' android:top='0dp' android:right='0dp' android:bottom='0dp' /><!-- 四周留出來的空白 --></shape>

關于計算器的精彩文章請查看《計算器專題》 ,更多精彩等你來發現!

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持好吧啦網。

標簽: Android
相關文章:
主站蜘蛛池模板: 久久免费精品视频 | 高清无遮挡在线观看 | 亚洲不卡在线观看 | 欧美精品伊人久久 | 九九在线精品视频xxx | 国产精品久久毛片 | 亚洲欧美视频一区 | 成人免费视频一区 | 无码一区二区三区视频 | 国产剧情毛片 | 欧美黄色性生活视频 | 亚洲国产毛片aaaaa无费看 | va免费视频 | 在线播放亚洲精品 | 麻豆视传媒一区二区三区 | 91网址免费入口 | 99久久久久国产 | 中文字幕在线永久 | 国产成人精品免费视频网页大全 | 男女性高爱潮免费网站 | 色黄网站在线观看 | 国产免费无遮挡精品视频 | 美国特黄一级片 | 久久久精品影院 | 成熟女性毛茸茸撒尿厕所 | 国产成人综合洲欧美在线 | 久久在线免费视频 | 黄色在线观看视频免费 | 国产h视频在线观看高清 | 国产免费高清国产在线视频 | 九九精品99久久久香蕉 | 国产一区二区精品久久凹凸 | 国产h视频在线观看 | 免费a大片 | 国产精品免费视频一区二区 | 日韩欧美精品一区二区 | 久久91精品国产91久久跳舞 | 男人黄女人色视频在线观看 | 国产日产欧美精品一区二区三区 | 国产成人精品天堂 | 亚洲黄色小视频 |