最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

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

 更新時(shí)間:2020年03月30日 10:24:48   作者:Fhujinwu  
這篇文章主要為大家詳細(xì)介紹了Android實(shí)現(xiàn)兩個(gè)數(shù)相加功能,文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下

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

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

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)擊專(zhuān)題: 計(jì)算器功能匯總 進(jìn)行學(xué)習(xí)

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

相關(guān)文章

  • Android ToolBar控件詳解及實(shí)例

    Android ToolBar控件詳解及實(shí)例

    這篇文章主要介紹了 Android ToolBar控件詳解及實(shí)例的相關(guān)資料,需要的朋友可以參考下
    2017-03-03
  • Android使用HttpURLConnection實(shí)現(xiàn)網(wǎng)絡(luò)訪(fǎng)問(wèn)流程

    Android使用HttpURLConnection實(shí)現(xiàn)網(wǎng)絡(luò)訪(fǎng)問(wèn)流程

    早些時(shí)候其實(shí)我們都習(xí)慣性使用HttpClient,但是后來(lái)Android6.0之后不再支持HttpClient,需要添加Apache的jar才行,所以,就有很多開(kāi)發(fā)者放棄使用HttpClient了,HttpURLConnection畢竟是標(biāo)準(zhǔn)Java接口(java.net) ,適配性還是很強(qiáng)的
    2022-12-12
  • Android編程解析XML文件的方法詳解【基于XmlPullParser】

    Android編程解析XML文件的方法詳解【基于XmlPullParser】

    這篇文章主要介紹了Android編程解析XML文件的方法,結(jié)合實(shí)例形式分析了Android基于XmlPullParser解析xml文件的相關(guān)操作技巧與注意事項(xiàng),需要的朋友可以參考下
    2017-07-07
  • Android View滑動(dòng)的實(shí)現(xiàn)分析示例

    Android View滑動(dòng)的實(shí)現(xiàn)分析示例

    View滑動(dòng)是Android實(shí)現(xiàn)自定義控件的基礎(chǔ),同時(shí)在開(kāi)發(fā)中難免會(huì)遇到View的滑動(dòng)處理,其實(shí)不管是那種滑動(dòng)方法,基本思路是類(lèi)似的;當(dāng)點(diǎn)擊事件傳到View時(shí),系統(tǒng)記下觸摸點(diǎn)的坐標(biāo),手指移動(dòng)時(shí)系統(tǒng)記下移動(dòng)后的左邊并算出偏移量,通過(guò)偏移量來(lái)修改View的坐標(biāo)
    2022-08-08
  • Android繪制簡(jiǎn)單條形圖

    Android繪制簡(jiǎn)單條形圖

    這篇文章主要為大家詳細(xì)介紹了Android繪制簡(jiǎn)單條形圖,文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
    2022-08-08
  • Android4.0平板開(kāi)發(fā)之隱藏底部任務(wù)欄的方法

    Android4.0平板開(kāi)發(fā)之隱藏底部任務(wù)欄的方法

    這篇文章主要介紹了Android4.0平板開(kāi)發(fā)之隱藏底部任務(wù)欄的方法,結(jié)合實(shí)例形式較為詳細(xì)的分析了Android隱藏于顯示底部任務(wù)欄的相關(guān)技巧,具有一定參考借鑒價(jià)值,需要的朋友可以參考下
    2015-11-11
  • Android ExpandableListView使用方法案例詳解

    Android ExpandableListView使用方法案例詳解

    這篇文章主要介紹了Android ExpandableListView使用方法案例詳解,本篇文章通過(guò)簡(jiǎn)要的案例,講解了該項(xiàng)技術(shù)的了解與使用,以下就是詳細(xì)內(nèi)容,需要的朋友可以參考下
    2021-08-08
  • Android屏幕鎖屏彈窗的正確姿勢(shì)DEMO詳解

    Android屏幕鎖屏彈窗的正確姿勢(shì)DEMO詳解

    本文給大家分享android屏幕鎖屏彈窗的正確姿勢(shì)DEMO詳解,本文介紹的非常詳細(xì),具有參考借鑒價(jià)值,感興趣的朋友一起看看吧
    2016-09-09
  • Android 使用Kotlin自定義View的方法教程

    Android 使用Kotlin自定義View的方法教程

    最近想加強(qiáng)一下自定義view方面的學(xué)習(xí),正好也在學(xué)習(xí)Kotlin,所以就嘗試著用Kotlin寫(xiě)一下簡(jiǎn)單的自定義view,下面這篇文章主要給大家介紹了關(guān)于Android使用Kotlin自定義View的方法教程,需要的朋友可以參考下。
    2017-12-12
  • Android自定義View實(shí)現(xiàn)風(fēng)車(chē)效果

    Android自定義View實(shí)現(xiàn)風(fēng)車(chē)效果

    這篇文章主要為大家詳細(xì)介紹了Android自定義View實(shí)現(xiàn)風(fēng)車(chē)效果,文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
    2022-08-08

最新評(píng)論

平阴县| 新绛县| 平邑县| 栾川县| 卢湾区| 大城县| 蓬莱市| 铅山县| 大关县| 西乌| 陈巴尔虎旗| 南宫市| 公主岭市| 新乡县| 永登县| 济源市| 民权县| 油尖旺区| 晋宁县| 崇阳县| 和硕县| 聂拉木县| 鸡泽县| 乌拉特中旗| 江津市| 邵东县| 剑河县| 玉门市| 八宿县| 锡林郭勒盟| 合作市| 临澧县| 鄂托克旗| 德惠市| 沙田区| 岳池县| 清新县| 渭南市| 肥西县| 廊坊市| 启东市|