EditText setError未在FragmentActivities中显示

时间:2012-10-24 18:04:57

标签: android android-fragments

我在Activity中有一个表单,它的字段在第二个类(BLL类)上有效,我使用setError()方法显示验证消息。它在那之前运作良好。

但现在我需要将此表单放在片段活动上。我做了所需的所有更改,验证工作正常,但“气球”没有显示。

我到处搜寻,但我找不到任何有用的东西。

这是我的代码:

public class OrderCustomFieldsFragment extends Fragment {

  public void save() {

    try {
        CustomFieldsBll customFields = new CustomFieldsBll(this.getActivity());
        customFields.validateCustomFields(irrelevant...); 
        ...irrelevant code...
        Toast.makeText(this.getActivity(), "Saved.", Toast.LENGTH_LONG).show();
    }
    catch (CustomException z) {
        if (setError(z.getThrowerField(), z.getMessage()))
            Toast.makeText(this.getActivity(), z.getMessage(), Toast.LENGTH_SHORT).show();
    }

  }



  private boolean setError(Integer throwerField, String msg) {
    //If thorwerField is null then is a general error, otherwise is a form field
    if (throwerField == null) {
      //here display an dialog          
      showOKMessage(this.getActivity(), "Pedidos", msg, false);
      return false;
    }
    else {
      try {
          //linearLayout is my view, instanciated in onCreateView method
        TextView customField = (TextView)linearLayout.findViewById(throwerField);
        if (customField != null) {
           customField.setError(msg);
           customField.requestFocus();
           return true;
        }
        else {
          showOKMessage(this.getActivity(), "Pedidos", msg, false);
        }
      }
      catch (Exception e) {
        showOKMessage(this.getActivity(), "Pedidos", msg, false);
      }
   }

   return false;
  }

}

抛出异常,找到字段,设置错误,但只出现Toast,错误气球不起作用。 任何想法? 感谢

0 个答案:

没有答案