安卓开发 计算题的按钮事件如果输入框为空的话,点击按钮出现请输入值的这样的提示的代码是什么?
做了个计算值的题两个文本框如果没有输入值点击按钮会报错退出,要加个如果文本框为空值点击按钮就要求提示要输入值才能计算的代码是什么?...
做了个计算值的题 两个文本框如果没有输入值 点击按钮会报错退出,要加个如果文本框为空值点击按钮就要求提示要输入值才能计算的代码是什么?
展开
1个回答
展开全部
public class MainActivity extends Activity {
EditText a, b;
TextView c;
String a1;
String b1;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
a = (EditText) findViewById(R.id.editText1);
b = (EditText) findViewById(R.id.editText2);
c = (TextView) findViewById(R.id.textView1);
findViewById(R.id.button1).setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
a1 = a.getText().toString();
b1 = b.getText().toString();
if (!TextUtils.isEmpty(a1) && !TextUtils.isEmpty(b1)) {
int total = Integer.parseInt(a1) + Integer.parseInt(b1);
c.setText(total + "");
} else {
Toast.makeText(MainActivity.this, "请输入您要相加的两个数",
Toast.LENGTH_SHORT).show();
}
}
});
}
}
EditText a, b;
TextView c;
String a1;
String b1;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
a = (EditText) findViewById(R.id.editText1);
b = (EditText) findViewById(R.id.editText2);
c = (TextView) findViewById(R.id.textView1);
findViewById(R.id.button1).setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
a1 = a.getText().toString();
b1 = b.getText().toString();
if (!TextUtils.isEmpty(a1) && !TextUtils.isEmpty(b1)) {
int total = Integer.parseInt(a1) + Integer.parseInt(b1);
c.setText(total + "");
} else {
Toast.makeText(MainActivity.this, "请输入您要相加的两个数",
Toast.LENGTH_SHORT).show();
}
}
});
}
}
追问
if (!TextUtils.isEmpty(a1) && !TextUtils.isEmpty(b1)) {
int total = Integer.parseInt(a1) + Integer.parseInt(b1);
这段开始包括后面都是关键代码?
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询