我测试一下
btnDoActivity.setVisibility(View.GONE);
if (dLicense == null) {
dLicense = new DrivingLicense();
}
String plate = etPlate.getText().toString().trim();
if (plate == null || plate.length() == 0) {
Utils.showToast(getContext(), "请填写车牌号");
return;
}
网友评论