标签:button 输入 class dial message show integer and null
1 if(name_a.getText().toString().trim().equals("")){ 2 new AlertDialog.Builder(ActivityA.this) 3 .setTitle("警告").setMessage("姓名输入不能为空,请重新输入!!!") 4 .setPositiveButton("确定", null).show(); 5 return; 6 7 }else{ 8 age_a.setText(age_a.getText().toString()); 9 }
在layout中对于EditText只能输入数字的方法:
android:numeric="integer"
android:singleLine="true"
标签:button 输入 class dial message show integer and null
原文地址:http://www.cnblogs.com/anylemons/p/6711152.html