Android Dev:为什么我不能在EditText中检查vail

时间:2015-12-07 13:41:38

标签: android-studio android-edittext

我在android studio中有代码,如果结构有一些错误。

EditText etPrice = (EditText) findViewById(R.id.etPrice);
int price = Integer.parseInt(etPrice.getText().toString());

if(!TextUtils.isEmpty(etPrice.getText())){
    gia=price;
}
else{
    Toast.makeText(getApplicationContext(),"enter price lz",Toast.LENGTH_LONG).show();
}

有没有人知道如何修复它?

0 个答案:

没有答案