Android实现两个数相加功能
更新时间:2020年03月30日 10:24:48 作者:Fhujinwu
这篇文章主要为大家详细介绍了Android实现两个数相加功能,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
本文实例为大家分享了Android实现两个数相加的具体代码,供大家参考,具体内容如下
要实现如图所示的加法计算器的话,还是比较简单的,下面直接上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="请输入整数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);
}
});
}
}
更多计算器功能实现,请点击专题: 计算器功能汇总 进行学习
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。
相关文章
Android使用HttpURLConnection实现网络访问流程
早些时候其实我们都习惯性使用HttpClient,但是后来Android6.0之后不再支持HttpClient,需要添加Apache的jar才行,所以,就有很多开发者放弃使用HttpClient了,HttpURLConnection毕竟是标准Java接口(java.net) ,适配性还是很强的2022-12-12
Android编程解析XML文件的方法详解【基于XmlPullParser】
这篇文章主要介绍了Android编程解析XML文件的方法,结合实例形式分析了Android基于XmlPullParser解析xml文件的相关操作技巧与注意事项,需要的朋友可以参考下2017-07-07
Android ExpandableListView使用方法案例详解
这篇文章主要介绍了Android ExpandableListView使用方法案例详解,本篇文章通过简要的案例,讲解了该项技术的了解与使用,以下就是详细内容,需要的朋友可以参考下2021-08-08


最新评论