91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Android實現兩個數相加功能

發布時間:2020-10-17 20:50:04 來源:腳本之家 閱讀:342 作者:Fhujinwu 欄目:移動開發

本文實例為大家分享了Android實現兩個數相加的具體代碼,供大家參考,具體內容如下

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

Android實現兩個數相加功能

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="請輸入整數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="請輸入整數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="確認"/>
 <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);
   }
  });
 }
}

更多計算器功能實現,請點擊專題: 計算器功能匯總 進行學習

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

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

蒙城县| 凤冈县| 绍兴市| 项城市| 南乐县| 铜陵市| 景宁| 香格里拉县| 星子县| 闵行区| 和静县| 洛南县| 吉安市| 宜州市| 汉沽区| 云霄县| 渭源县| 阿拉善盟| 保靖县| 赤城县| 建湖县| 广元市| 日土县| 凤城市| 如东县| 吉林省| 普兰店市| 大宁县| 南开区| 镇康县| 乌拉特中旗| 利津县| 辽阳县| 惠水县| 保康县| 河北区| 尉氏县| 涿鹿县| 长寿区| 原平市| 建阳市|