if(productItem.ProductName.equals(""))
{
Toast.makeText(getApplicationContext(), "Please Enter the Product Name...",
Toast.LENGTH_LONG).show();
((InputMethodManager) MainFormActivity.this
.getSystemService(Context.INPUT_METHOD_SERVICE))
.showSoftInput(pName, 0);
}
这段代码对我不起作用,我想每次点击保存按钮时都应该验证缺失的字段,如果缺少的光标应该出现在缺失的字段中。