<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
本文範例為大家分享了Android Studio實現簡易計算器的具體程式碼,供大家參考,具體內容如下
1、如圖所示(實際設計,類似此介面樣式即可,全螢幕時,按鈕將會縱向拉伸),利用網格佈局管理器設計一個居中、滿屏計算器,專案名稱:clc666b;(666,改成自己的實際編號)
2、加、乘分別用2個無線電鈕進行選擇;
3、為clc666b編寫程式(clc666a不需要程式設計,只設計介面即可),根據選擇的加(乘)無線電鈕,實現兩個數的加法和乘法的簡單計算。
4、為了簡化程式設計,上方的資料區也可以設計成3個文字方塊(如果一個文字方塊實現功能,則更好),分別用作被(乘)加數、加(乘)數、合(積);
1.首要的目標是先做一個視窗,視窗設計需要滿屏平分,所以要修改每一個部件的權重。
2.java程式設計,要監聽不同種類的按鍵,網上基本上都是普通按鍵的程式,沒有radiobutton的,這個題目對於我這種新手來說有點不太友好,不能直接抄網上的,還要根據老師上課講的改一改。
(1)當按下數位按鍵時,把按鍵所對應的數位存到一個字串中,然後更新text。
(2)如果按下刪除的時候把字串最後一個字元刪去即可,然後更新text.。
(3)當按下運運算元號鍵時,把前面的字元存在一個字串a中,並儲存運運算元號鍵的id地址。
(4)繼續進行前兩步的操作,直到按下等於號鍵執行(5)。
(5)把運運算元號後的給字串b,根據id來對a和b進行運算,更新text。
1.更新後的xml程式碼
<?xml version="1.0" encoding="utf-8"?> <GridLayout 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:layout_row="6" android:layout_column="3" android:background="#FF0097A7" tools:context=".MainActivity"> <TextView android:id="@+id/textview1" android:layout_width="0dp" android:layout_height="0dp" android:layout_rowSpan="1" android:layout_rowWeight="2" android:layout_columnSpan="3" android:layout_columnWeight="3" android:background="#F1D5A2" android:text=" " android:textSize="30sp" /> <Button android:id="@+id/nm1" android:layout_width="0dp" android:layout_height="0dp" android:layout_row="3" android:layout_rowSpan="1" android:layout_rowWeight="1" android:layout_column="0" android:layout_columnSpan="1" android:layout_columnWeight="1" android:text="1" android:textSize="36sp" /> <Button android:id="@+id/nm2" android:layout_width="0dp" android:layout_height="0dp" android:layout_rowSpan="1" android:layout_rowWeight="1" android:layout_columnSpan="1" android:layout_columnWeight="1" android:text="2" android:textSize="36sp" /> <RadioGroup android:id="@+id/radioGroup2" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_rowSpan="2" android:layout_rowWeight="1" android:layout_columnSpan="1" android:layout_columnWeight="1" android:layout_gravity="center"> <RadioButton android:id="@+id/mul" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_rowWeight="1" android:layout_columnWeight="1" android:checked="false" android:text="×" android:textSize="36sp" /> <RadioButton android:id="@+id/add" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_rowWeight="1" android:layout_columnWeight="1" android:checked="false" android:text="+" android:textSize="36sp" /> </RadioGroup> <Button android:id="@+id/nm3" android:layout_width="0dp" android:layout_height="0dp" android:layout_row="4" android:layout_rowSpan="1" android:layout_rowWeight="1" android:layout_column="0" android:layout_columnSpan="1" android:layout_columnWeight="1" android:text="3" android:textSize="36sp" /> <Button android:id="@+id/del" android:layout_width="0dp" android:layout_height="0dp" android:layout_rowSpan="1" android:layout_rowWeight="1" android:layout_columnSpan="1" android:layout_columnWeight="1" android:text="DEL" android:textSize="36sp" /> <Button android:id="@+id/equ" android:layout_width="0dp" android:layout_height="0dp" android:layout_row="5" android:layout_rowSpan="1" android:layout_rowWeight="1" android:layout_column="0" android:layout_columnSpan="2" android:layout_columnWeight="1" android:text="=" android:textSize="36sp" /> </GridLayout>
2.更新後的java程式碼
package com.example.lenovo.clc231b; import androidx.appcompat.app.AppCompatActivity; import android.os.Bundle; import android.view.View; import android.widget.Button; import android.view.View.OnClickListener; import android.widget.TextView; public class MainActivity extends AppCompatActivity { private String num = ""; private String num_zong = ""; private int fore,back,lenth,id; TextView textview1; Button nm1; Button nm2; Button nm3; Button del; Button equ; Button mul; Button add; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); textview1=(TextView)findViewById(R.id.textview1); nm1 = (Button)findViewById(R.id.nm1); nm2 = (Button)findViewById(R.id.nm2); nm3 = (Button)findViewById(R.id.nm3); del = (Button)findViewById(R.id.del); equ = (Button)findViewById(R.id.equ); mul = (Button)findViewById(R.id.mul); add = (Button)findViewById(R.id.add); nm1.setOnClickListener(listener); nm2.setOnClickListener(listener); nm3.setOnClickListener(listener); del.setOnClickListener(listener); equ.setOnClickListener(listener); mul.setOnClickListener(listener); add.setOnClickListener(listener); } //監聽按鈕 public OnClickListener listener = new OnClickListener() { @Override public void onClick(View view) { switch (view.getId()){ case R.id.nm1: number(1); break; case R.id.nm2: number(2); break; case R.id.nm3: number(3); break; case R.id.del: delete(); break; case R.id.equ: result(); break; case R.id.mul: Get_mul_add(1); break; case R.id.add: Get_mul_add(2); break; default: break; } textview1.setText(num); } }; private void Get_mul_add(int flag){ fore = Integer.valueOf(num); if(flag == 1) { id = R.id.mul; num += "×"; } else { id = R.id.add; num += "+"; } textview1.setText(num); lenth = num.length(); } private void result() { num_zong = num; num = num.substring(lenth); back = Integer.valueOf(num); if(id == R.id.mul) num = String.valueOf((fore*back)); else num = String.valueOf((fore+back)); num = num_zong + "=" + num; } private void delete() { num = num.substring(0,num.length()-1); } private void number(int i) { num += i; } }
3.原來的程式碼
<?xml version="1.0" encoding="utf-8"?> <GridLayout 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:layout_row="6" android:layout_column="3" android:background="#FF0097A7" tools:context=".MainActivity"> <TextView android:id="@+id/textview1" android:layout_width="0dp" android:layout_height="0dp" android:layout_rowSpan="1" android:layout_rowWeight="3" android:layout_columnSpan="3" android:layout_columnWeight="3" android:background="#F1D5A2" android:text=" " android:textSize="30sp" /> <Button android:id="@+id/button1" android:layout_width="0dp" android:layout_height="0dp" android:layout_row="3" android:layout_rowSpan="1" android:layout_rowWeight="1" android:layout_column="0" android:layout_columnSpan="1" android:layout_columnWeight="1" android:text="1" android:textSize="36sp" /> <Button android:id="@+id/button2" android:layout_width="0dp" android:layout_height="0dp" android:layout_rowSpan="1" android:layout_rowWeight="1" android:layout_columnSpan="1" android:layout_columnWeight="1" android:text="2" android:textSize="36sp" /> <RadioGroup android:id="@+id/radioGroup2" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_rowSpan="2" android:layout_rowWeight="1" android:layout_columnSpan="1" android:layout_columnWeight="1" android:layout_gravity="center"> <RadioButton android:id="@+id/r1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_rowWeight="1" android:layout_columnWeight="1" android:checked="false" android:text="×" android:textSize="36sp" /> <RadioButton android:id="@+id/r2" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_rowWeight="1" android:layout_columnWeight="1" android:checked="false" android:text="+" android:textSize="36sp" /> </RadioGroup> <Button android:id="@+id/button3" android:layout_width="0dp" android:layout_height="0dp" android:layout_row="4" android:layout_rowSpan="1" android:layout_rowWeight="1" android:layout_column="0" android:layout_columnSpan="1" android:layout_columnWeight="1" android:text="3" android:textSize="36sp" /> <Button android:id="@+id/button4" android:layout_width="0dp" android:layout_height="0dp" android:layout_rowSpan="1" android:layout_rowWeight="1" android:layout_columnSpan="1" android:layout_columnWeight="1" android:text="DEL" android:textSize="36sp" /> <Button android:id="@+id/button5" android:layout_width="0dp" android:layout_height="0dp" android:layout_row="5" android:layout_rowSpan="1" android:layout_rowWeight="1" android:layout_column="0" android:layout_columnSpan="2" android:layout_columnWeight="1" android:text="=" android:textSize="36sp" /> </GridLayout>
package com.example.lenovo.clc231b; import androidx.appcompat.app.AppCompatActivity; import android.os.Bundle; import android.view.View; import android.widget.Button; import android.view.View.OnClickListener; import android.widget.RadioButton; import android.widget.RadioGroup; import android.widget.TextView; public class MainActivity extends AppCompatActivity { private String num = ""; private String num_zong = ""; private int fore,back,lenth,id; TextView textview1; RadioGroup question2; Button button1; Button button2; Button button3; Button button4; Button button5; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); textview1=(TextView)findViewById(R.id.textview1); button1 = (Button)findViewById(R.id.button1); button2 = (Button)findViewById(R.id.button2); button3 = (Button)findViewById(R.id.button3); button4 = (Button)findViewById(R.id.button4); button5 = (Button)findViewById(R.id.button5); question2 = (RadioGroup) findViewById(R.id.radioGroup2); button1.setOnClickListener(listener); button2.setOnClickListener(listener); button3.setOnClickListener(listener); button4.setOnClickListener(listener); button5.setOnClickListener(listener); question2.setOnClickListener(listener); } public OnClickListener listener = new OnClickListener() { @Override public void onClick(View view) { switch (view.getId()){ case R.id.button1: number(1); break; case R.id.button2: number(2); break; case R.id.button3: number(3); break; case R.id.button4: delete(); break; case R.id.button5: result(); break; default: break; } question2.setOnCheckedChangeListener(new RadioGroup.OnCheckedChangeListener() { @Override public void onCheckedChanged(RadioGroup group, int checkedId) { //獲取被選擇的無線電鈕 RadioButton r = (RadioButton) findViewById(checkedId); //Toast.makeText(MainActivity.this,"你的愛好是:" + r.getText(), Toast.LENGTH_SHORT).show(); id = r.getId(); textview1.setText(num + r.getText()); fore = Integer.valueOf(num); num = num+ r.getText(); lenth = num.length(); } }); textview1.setText(num); } }; //乘號id是2131165311 加號id是2131165312 private void result() { num_zong = num; num = num.substring(lenth); back = Integer.valueOf(num); if(id == 2131165311) num = String.valueOf((fore*back)); else num = String.valueOf((fore+back)); num = num_zong + "=" + num; } private void delete(){ num = num.substring(0,num.length()-1); } private void number(int i){ num = num + i; } }
執行必須按照流程來,不然app會崩潰,不想改了,累了,對我這樣的新手不太友好。
(更新後,更改了一些引數定義名稱,更加直觀,更改了一些函數內容,減少冗餘度)
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支援it145.com。
相關文章
<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
综合看Anker超能充系列的性价比很高,并且与不仅和iPhone12/苹果<em>Mac</em>Book很配,而且适合多设备充电需求的日常使用或差旅场景,不管是安卓还是Switch同样也能用得上它,希望这次分享能给准备购入充电器的小伙伴们有所
2021-06-01 09:31:42
除了L4WUDU与吴亦凡已经多次共事,成为了明面上的厂牌成员,吴亦凡还曾带领20XXCLUB全队参加2020年的一场音乐节,这也是20XXCLUB首次全员合照,王嗣尧Turbo、陈彦希Regi、<em>Mac</em> Ova Seas、林渝植等人全部出场。然而让
2021-06-01 09:31:34
目前应用IPFS的机构:1 谷歌<em>浏览器</em>支持IPFS分布式协议 2 万维网 (历史档案博物馆)数据库 3 火狐<em>浏览器</em>支持 IPFS分布式协议 4 EOS 等数字货币数据存储 5 美国国会图书馆,历史资料永久保存在 IPFS 6 加
2021-06-01 09:31:24
开拓者的车机是兼容苹果和<em>安卓</em>,虽然我不怎么用,但确实兼顾了我家人的很多需求:副驾的门板还配有解锁开关,有的时候老婆开车,下车的时候偶尔会忘记解锁,我在副驾驶可以自己开门:第二排设计很好,不仅配置了一个很大的
2021-06-01 09:30:48
不仅是<em>安卓</em>手机,苹果手机的降价力度也是前所未有了,iPhone12也“跳水价”了,发布价是6799元,如今已经跌至5308元,降价幅度超过1400元,最新定价确认了。iPhone12是苹果首款5G手机,同时也是全球首款5nm芯片的智能机,它
2021-06-01 09:30:45