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

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

創(chuàng)新互聯(lián)專業(yè)為企業(yè)提供三明網(wǎng)站建設(shè)、三明做網(wǎng)站、三明網(wǎng)站設(shè)計(jì)、三明網(wǎng)站制作等企業(yè)網(wǎng)站建設(shè)、網(wǎng)頁(yè)設(shè)計(jì)與制作、三明企業(yè)網(wǎng)站模板建站服務(wù),10多年三明做網(wǎng)站經(jīng)驗(yàn),不只是建網(wǎng)站,更提供有價(jià)值的思路和整體網(wǎng)絡(luò)服務(wù)。

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

Android實(shí)現(xiàn)兩個(gè)數(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="請(qǐng)輸入整數(shù)x:"/>
  <EditText
   android:id="@+id/edit1"
   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="請(qǐng)輸入整數(shù)y:"/>
  <EditText
   android:id="@+id/edit2"
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:layout_marginLeft="20dp"
   android:ems="20"/>
 </LinearLayout>

 <Button
  android:id="@+id/btn"
  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:id="@+id/text1"
   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);
   }
  });
 }
}

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

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持創(chuàng)新互聯(lián)。

當(dāng)前題目:Android實(shí)現(xiàn)兩個(gè)數(shù)相加功能
新聞來(lái)源:http://muchs.cn/article42/ghgohc.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供ChatGPT、域名注冊(cè)用戶體驗(yàn)、商城網(wǎng)站、微信小程序、網(wǎng)站排名

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)

搜索引擎優(yōu)化