Android Studio創(chuàng)建計(jì)算器Demo

如果所有人都懂你趁曼,那你得有多平凡暗踩颉摄悯!

先上預(yù)覽圖


activity_main.xml處寫界面代碼

xmlns:tools="http://schemas.android.com/tools"

android:id="@+id/activity_main"

android:layout_width="fill_parent"

android:layout_height="fill_parent"

android:paddingBottom="@dimen/activity_vertical_margin"

android:paddingLeft="@dimen/activity_horizontal_margin"

android:paddingRight="@dimen/activity_horizontal_margin"

android:paddingTop="@dimen/activity_vertical_margin"

tools:context="com.example.superseppol.calculatordemo.MainActivity"

android:weightSum="1"

android:orientation="vertical"

android:gravity="center_vertical"

android:baselineAligned="false">

android:layout_width="290dp"

android:layout_height="60dip"

android:id="@+id/et_input"

android:editable="false"

android:layout_gravity="center"

android:gravity="right|bottom"

android:textSize="35sp"

android:background="@drawable/white_bg"

/>

android:layout_width="fill_parent"

android:layout_height="wrap_content"

android:layout_marginTop="20dp"

android:orientation="horizontal"

android:gravity="center_horizontal">

android:layout_width="65dp"

android:layout_height="65dp"

android:text="C"

android:gravity="right|bottom"

android:paddingRight="10dp"

android:paddingBottom="10dp"

android:background="@drawable/white_selector"

android:textSize="30sp"

android:id="@+id/btn_clear"/>

android:layout_width="65dp"

android:layout_height="65dp"

android:text="DEL"

android:gravity="right|bottom"

android:paddingRight="10dp"

android:paddingBottom="10dp"

android:background="@drawable/white_selector"

android:layout_marginLeft="10dp"

android:textSize="30sp"

android:id="@+id/btn_del"/>

android:layout_width="65dp"

android:layout_height="65dp"

android:text="÷"

android:gravity="right|bottom"

android:paddingRight="10dp"

android:paddingBottom="10dp"

android:background="@drawable/white_selector"

android:layout_marginLeft="10dp"

android:textSize="30sp"

android:id="@+id/btn_multiply"/>

android:layout_width="65dp"

android:layout_height="65dp"

android:text="×"

android:gravity="right|bottom"

android:paddingRight="10dp"

android:paddingBottom="10dp"

android:background="@drawable/white_selector"

android:layout_marginLeft="10dp"

android:textSize="30sp"

android:id="@+id/btn_divide"/>

android:layout_width="fill_parent"

android:layout_height="wrap_content"

android:layout_marginTop="10dp"

android:orientation="horizontal"

android:gravity="center_horizontal">

android:layout_width="65dp"

android:layout_height="65dp"

android:text="7"

android:gravity="right|bottom"

android:paddingRight="10dp"

android:paddingBottom="10dp"

android:background="@drawable/white_selector"

android:textSize="30sp"

android:id="@+id/btn_7"/>

android:layout_width="65dp"

android:layout_height="65dp"

android:text="8"

android:gravity="right|bottom"

android:paddingRight="10dp"

android:paddingBottom="10dp"

android:background="@drawable/white_selector"

android:layout_marginLeft="10dp"

android:textSize="30sp"

android:id="@+id/btn_8"/>

android:layout_width="65dp"

android:layout_height="65dp"

android:text="9"

android:gravity="right|bottom"

android:paddingRight="10dp"

android:paddingBottom="10dp"

android:background="@drawable/white_selector"

android:layout_marginLeft="10dp"

android:textSize="30sp"

android:id="@+id/btn_9"/>

android:layout_width="65dp"

android:layout_height="65dp"

android:text="-"

android:gravity="right|bottom"

android:paddingRight="10dp"

android:paddingBottom="10dp"

android:background="@drawable/white_selector"

android:layout_marginLeft="10dp"

android:textSize="30sp"

android:id="@+id/btn_minus"/>

android:layout_width="fill_parent"

android:layout_height="wrap_content"

android:layout_marginTop="10dp"

android:orientation="horizontal"

android:gravity="center_horizontal">

android:layout_width="65dp"

android:layout_height="65dp"

android:text="4"

android:gravity="right|bottom"

android:paddingRight="10dp"

android:paddingBottom="10dp"

android:background="@drawable/white_selector"

android:textSize="30sp"

android:id="@+id/btn_4"/>

android:layout_width="65dp"

android:layout_height="65dp"

android:text="5"

android:gravity="right|bottom"

android:paddingRight="10dp"

android:paddingBottom="10dp"

android:background="@drawable/white_selector"

android:layout_marginLeft="10dp"

android:textSize="30sp"

android:id="@+id/btn_5"/>

android:layout_width="65dp"

android:layout_height="65dp"

android:text="6"

android:gravity="right|bottom"

android:paddingRight="10dp"

android:paddingBottom="10dp"

android:background="@drawable/white_selector"

android:layout_marginLeft="10dp"

android:textSize="30sp"

android:id="@+id/btn_6"/>

android:layout_width="65dp"

android:layout_height="65dp"

android:text="+"

android:gravity="right|bottom"

android:paddingRight="10dp"

android:paddingBottom="10dp"

android:background="@drawable/white_selector"

android:layout_marginLeft="10dp"

android:textSize="30sp"

android:id="@+id/btn_plus"/>

android:layout_width="fill_parent"

android:layout_height="wrap_content"

android:orientation="horizontal"

android:gravity="center_horizontal"

android:layout_marginTop="10dp">

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:orientation="vertical">

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:orientation="horizontal">

android:layout_width="65dp"

android:layout_height="65dp"

android:text="1"

android:gravity="right|bottom"

android:paddingRight="10dp"

android:paddingBottom="10dp"

android:background="@drawable/white_selector"

android:textSize="30sp"

android:id="@+id/btn_1"

/>

android:layout_width="65dp"

android:layout_height="65dp"

android:layout_marginLeft="10dp"

android:text="2"

android:gravity="right|bottom"

android:paddingRight="10dp"

android:paddingBottom="10dp"

android:background="@drawable/white_selector"

android:textSize="30sp"

android:id="@+id/btn_2"

/>

android:layout_width="65dp"

android:layout_height="65dp"

android:text="3"

android:gravity="right|bottom"

android:paddingRight="10dp"

android:paddingBottom="10dp"

android:background="@drawable/white_selector"

android:layout_marginLeft="10dp"

android:textSize="30sp"

android:id="@+id/btn_3"

/>

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:layout_marginTop="10dp"

android:orientation="horizontal"

android:gravity="center_horizontal">

android:layout_width="140dp"

android:layout_height="65dp"

android:text="0"

android:gravity="right|bottom"

android:paddingRight="10dp"

android:paddingBottom="10dp"

android:background="@drawable/white_selector"

android:textSize="30sp"

android:id="@+id/btn_0"

/>

android:layout_width="65dp"

android:layout_height="65dp"

android:text="."

android:gravity="right|bottom"

android:paddingRight="10dp"

android:paddingBottom="10dp"

android:background="@drawable/white_selector"

android:layout_marginLeft="10dp"

android:textSize="30sp"

android:id="@+id/btn_point"

/>

android:layout_width="65dp"

android:layout_height="140dp"

android:text="="

android:gravity="right|bottom"

android:layout_marginLeft="10dp"

android:paddingRight="10dp"

android:paddingBottom="10dp"

android:background="@drawable/orange_select"

android:textSize="30sp"

android:id="@+id/btn_equal"/>

在AndroidManifest.xml處添加去TitleBar主題

android:theme="@android:style/Theme.Black.NoTitleBar"

MainActivity.java處寫邏輯運(yùn)算代碼

package com.example.superseppol.calculatordemo;

import android.app.Activity;

import android.os.Bundle;

import android.view.View;

import android.widget.Button;

import android.widget.EditText;

public class MainActivity extends Activity implements View.OnClickListener {

Button btn_0;//0數(shù)字按鈕

Button btn_1;//1數(shù)字按鈕

Button btn_2;//2數(shù)字按鈕

Button btn_3;//3數(shù)字按鈕

Button btn_4;//4數(shù)字按鈕

Button btn_5;//5數(shù)字按鈕

Button btn_6;//6數(shù)字按鈕

Button btn_7;//7數(shù)字按鈕

Button btn_8;//8數(shù)字按鈕

Button btn_9;//9數(shù)字按鈕

Button btn_point;//小數(shù)點(diǎn)按鈕

Button btn_clear;//清除按鈕

Button btn_del;//刪除按鈕

Button btn_plus;//加號按鈕

Button btn_minus;//減號按鈕

Button btn_multiply;//乘號按鈕

Button btn_divide;//除號按鈕

Button btn_equal;//等于號按鈕

EditText et_input;//顯示輸入內(nèi)容的按鈕

boolean clear_flag;//清空標(biāo)識

@Override

public void onClick(View v) {

String str=et_input.getText().toString();

switch (v.getId()){

caseR.id.btn_0:

caseR.id.btn_1:

caseR.id.btn_2:

caseR.id.btn_3:

caseR.id.btn_4:

caseR.id.btn_5:

caseR.id.btn_6:

caseR.id.btn_7:

caseR.id.btn_8:

caseR.id.btn_9:

caseR.id.btn_point:

if(clear_flag){

clear_flag=false;

str="";

et_input.setText("");

}

et_input.setText(str+((Button)v).getText());

break;

caseR.id.btn_plus:

caseR.id.btn_minus:

caseR.id.btn_multiply:

caseR.id.btn_divide:

if(clear_flag){

clear_flag=false;

str="";

et_input.setText("");

}

et_input.setText(str+" "+((Button)v).getText()+" ");

break;

caseR.id.btn_clear:

clear_flag=false;

str="";

et_input.setText("");

break;

caseR.id.btn_del:

if(clear_flag){

clear_flag=false;

str="";

et_input.setText("");

}elseif(str!=null&&!str.equals("")){

et_input.setText(str.substring(0,str.length()-1));

}

break;

caseR.id.btn_equal:

getResult();

break;

}

}

/*

* 運(yùn)算結(jié)果

* */

private voidgetResult(){

String exp=et_input.getText().toString();

if(exp==null||exp.equals("")){

return;

}

if(!exp.contains(" ")) {

return;

}

if(clear_flag){

clear_flag=false;

return;

}

clear_flag=true;

double result=0;

String s1=exp.substring(0,exp.indexOf(" "));

String op=exp.substring(exp.indexOf(" ")+1,exp.indexOf(" ")+2);

String s2=exp.substring(exp.indexOf(" ")+3);

if(!s1.equals("")&&!s2.equals("")){

double d1=Double.parseDouble(s1);

double d2=Double.parseDouble(s2);

if(op.equals("+")){

result=d1+d2;

}elseif(op.equals("-")){

result=d1-d2;

}elseif(op.equals("×")){

result=d1*d2;

}elseif(op.equals("÷")){

if(d2==0){

result=0;

}

else{

result=d1/d2;

}

}

if(!s1.contains(".")&&!s2.contains(".")&&!op.equals("÷")){

int r=(int)result;

et_input.setText(r+"");

}else{

et_input.setText(result+"");

}

}elseif(!s1.equals("")&&s2.equals("")){

et_input.setText(exp);

}elseif(s1.equals("")&&!s2.equals("")){

double d2=Double.parseDouble(s2);

if(op.equals("+")){

result=0+d2;

}elseif(op.equals("-")){

result=0-d2;

}elseif(op.equals("×")){

result=0;

}elseif(op.equals("÷")){

result=0;

}

if(!s2.contains(".")){

int r=(int)result;

et_input.setText(r+"");

}else{

et_input.setText(result+"");

}

}else{

et_input.setText("");

}

}

@Override

protected void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.activity_main);

btn_0=(Button) findViewById(R.id.btn_0);

btn_1=(Button) findViewById(R.id.btn_1);

btn_2=(Button) findViewById(R.id.btn_2);

btn_3=(Button) findViewById(R.id.btn_3);

btn_4=(Button) findViewById(R.id.btn_4);

btn_5=(Button) findViewById(R.id.btn_5);

btn_6=(Button) findViewById(R.id.btn_6);

btn_7=(Button) findViewById(R.id.btn_7);

btn_8=(Button) findViewById(R.id.btn_8);

btn_9=(Button) findViewById(R.id.btn_9);

btn_point=(Button) findViewById(R.id.btn_point);

btn_plus=(Button) findViewById(R.id.btn_plus);

btn_clear=(Button) findViewById(R.id.btn_clear);

btn_del=(Button) findViewById(R.id.btn_del);

btn_divide=(Button) findViewById(R.id.btn_divide);

btn_minus=(Button) findViewById(R.id.btn_minus);

btn_multiply=(Button) findViewById(R.id.btn_multiply);

btn_equal=(Button) findViewById(R.id.btn_equal);

//以上是實(shí)例化按鈕

et_input =(EditText)findViewById(R.id.et_input);//實(shí)例化顯示屏

btn_0.setOnClickListener(this);

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_plus.setOnClickListener(this);

btn_point.setOnClickListener(this);

btn_divide.setOnClickListener(this);

btn_del.setOnClickListener(this);

btn_multiply.setOnClickListener(this);

btn_minus.setOnClickListener(this);

btn_clear.setOnClickListener(this);

btn_equal.setOnClickListener(this);

//設(shè)置按鈕的點(diǎn)擊事件

}

}

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市征椒,隨后出現(xiàn)的幾起案子勃救,更是在濱河造成了極大的恐慌蒙秒,老刑警劉巖晕讲,帶你破解...
    沈念sama閱讀 211,348評論 6 491
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件马澈,死亡現(xiàn)場離奇詭異瓢省,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī)痊班,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,122評論 2 385
  • 文/潘曉璐 我一進(jìn)店門勤婚,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人涤伐,你說我怎么就攤上這事馒胆。” “怎么了凝果?”我有些...
    開封第一講書人閱讀 156,936評論 0 347
  • 文/不壞的土叔 我叫張陵祝迂,是天一觀的道長器净。 經(jīng)常有香客問我粗恢,道長匙赞,這世上最難降的妖魔是什么坐榆? 我笑而不...
    開封第一講書人閱讀 56,427評論 1 283
  • 正文 為了忘掉前任,我火速辦了婚禮,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘。我一直安慰自己伍宦,他們只是感情好卖毁,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,467評論 6 385
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著,像睡著了一般暂氯。 火紅的嫁衣襯著肌膚如雪辣吃。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,785評論 1 290
  • 那天,我揣著相機(jī)與錄音,去河邊找鬼。 笑死,一個胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播,決...
    沈念sama閱讀 38,931評論 3 406
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,696評論 0 266
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后责鳍,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,141評論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡逮壁,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,483評論 2 327
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了吼砂。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片周偎。...
    茶點(diǎn)故事閱讀 38,625評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡灶平,死狀恐怖罐监,靈堂內(nèi)的尸體忽然破棺而出航罗,到底是詐尸還是另有隱情,我是刑警寧澤缔御,帶...
    沈念sama閱讀 34,291評論 4 329
  • 正文 年R本政府宣布古程,位于F島的核電站矾瘾,受9級特大地震影響放妈,放射性物質(zhì)發(fā)生泄漏北救。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,892評論 3 312
  • 文/蒙蒙 一芜抒、第九天 我趴在偏房一處隱蔽的房頂上張望扭倾。 院中可真熱鬧,春花似錦挽绩、人聲如沸膛壹。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,741評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽模聋。三九已至,卻和暖如春唠亚,著一層夾襖步出監(jiān)牢的瞬間链方,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,977評論 1 265
  • 我被黑心中介騙來泰國打工灶搜, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留祟蚀,地道東北人。 一個月前我還...
    沈念sama閱讀 46,324評論 2 360
  • 正文 我出身青樓割卖,卻偏偏與公主長得像前酿,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子鹏溯,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,492評論 2 348

推薦閱讀更多精彩內(nèi)容