我想让空文本框检查android。我试过try catch,但它是强制关闭的。
下面是我的代码
try{
name = (EditText)findViewById(R.id.name);
}catch(NullPointerException ex){
new AlertDialog.Builder(KawalanAppXTVT.this).setTitle("Error" )
.setMessage("That's not a number")
.setPositiveButton("OK", null).show();
有人能帮我吗?