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

您的位置:首頁技術(shù)文章
文章詳情頁

Android實現(xiàn)兩個數(shù)相加功能

瀏覽:85日期:2022-09-25 10:39:59

本文實例為大家分享了Android實現(xiàn)兩個數(shù)相加的具體代碼,供大家參考,具體內(nèi)容如下

要實現(xiàn)如圖所示的加法計算器的話,還是比較簡單的,下面直接上demo,有不懂的可以留言交流。

Android實現(xiàn)兩個數(shù)相加功能

1、下面是activity.xml的布局文件

<?xml version='1.0' encoding='utf-8'?> <LinearLayout xmlns:android='http://schemas.android.com/apk/res/android' xmlns:tools='http://schemas.android.com/tools' android:layout_width='match_parent' android:layout_height='match_parent' android:orientation='vertical' tools:context='.MainActivity'> <LinearLayout android:layout_width='match_parent' android:layout_height='wrap_content'> <TextView android:layout_width='wrap_content' android:layout_height='wrap_content' android:text='請輸入整數(shù)x:'/> <EditText android: android:layout_width='wrap_content' android:layout_height='wrap_content' android:layout_marginLeft='20dp' android:ems='20'/> </LinearLayout> <LinearLayout android:layout_width='match_parent' android:layout_height='wrap_content'> <TextView android:layout_width='wrap_content' android:layout_height='wrap_content' android:text='請輸入整數(shù)y:'/> <EditText android: android:layout_width='wrap_content' android:layout_height='wrap_content' android:layout_marginLeft='20dp' android:ems='20'/> </LinearLayout> <Button android: android:layout_width='wrap_content' android:layout_height='wrap_content' android:layout_gravity='center' android:text='確認(rèn)'/> <LinearLayout android:layout_width='match_parent' android:layout_height='wrap_content'> <TextView android:layout_width='wrap_content' android:layout_height='wrap_content' android:text=' x+y=:'/> <TextView android: android:layout_width='wrap_content' android:layout_height='wrap_content' android:layout_marginLeft='20dp' android:textColor='#0aaaaa' android:ems='20'/> </LinearLayout></LinearLayout>

2、下面是MainActivity.java的代碼

package com.example.hjw.calculator;import android.support.v7.app.AppCompatActivity;import android.os.Bundle;import android.view.View;import android.widget.Button;import android.widget.EditText;import android.widget.TextView;public class MainActivity extends AppCompatActivity { private TextView tv1,tv2; private EditText edt1,edt2; private Button btn; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); btn=(Button)this.findViewById(R.id.btn); edt1=(EditText)this.findViewById(R.id.edit1); edt2=(EditText)this.findViewById(R.id.edit2); tv1=(TextView)this.findViewById(R.id.text1); btn.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { String inputText1=edt1.getText().toString(); String inputText2=edt2.getText().toString(); int num1=Integer.valueOf(inputText1).intValue(); int num2=Integer.valueOf(inputText2).intValue(); num1=num1+num2; inputText1=String.valueOf(num1); tv1.setText(inputText1); } }); }}

更多計算器功能實現(xiàn),請點擊專題: 計算器功能匯總 進(jìn)行學(xué)習(xí)

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持好吧啦網(wǎng)。

標(biāo)簽: Android
相關(guān)文章:
主站蜘蛛池模板: 91福利免费体验区观看区 | 欧美人一级淫片a免费播放 欧美人七十二式性视频教程一 | 成人午夜国产福到在线 | 国产高清在线精品一区在线 | 免费播放国产一级 | 久久久久久久免费 | 九九久久久久午夜精选 | 日本一视频一区视频二区 | 成人在线午夜 | 亚洲一区二区三区在线网站 | 欧美啊啊| 在线欧洲成人免费视频 | 日韩高清在线 | 久草在线视频播放 | 黄色大片一级片 | 国产性色视频在线高清 | 日本视频免费高清一本18 | 久草视频新 | 国产久热美女福利视频 | 欧美高清性刺激毛片 | 欧美高清一级毛片免费视 | 婷婷六月久久综合丁香乐透 | 日本一级大黄毛片一级 | 欧美一区福利 | 亚洲an天堂an在线观看 | 91在线视频在线 | 国产精品国产精品国产专区不卡 | 久久成人在线观看 | 国产亚洲欧美日韩综合综合二区 | 国产乱理伦片在线观看 | 免费观看在线永久免费xx视频 | 伊人成伊人成综合网2222 | 精品国产区一区二区三区在线观看 | 国产无套视频在线观看香蕉 | 欧美黄色片在线播放 | 日本与大黑人xxxx | 久久一区二区三区精品 | 国产做a视频免费观看 | 日韩一级a毛片欧美一级 | 国内精品久久久久香蕉 | 国产美女天天爽在线hd |