即使文本中有值,Textfield也为null

时间:2018-06-05 04:42:51

标签: android android-edittext fragment

我正在使用片段中的Textfield。一个是姓名,另一个是电话号码。验证两者的工作都很好。但是当我敬酒时,它会说是空/假。

EditText tPername = (EditText) getView().findViewById(R.id.txtPer);

这是xml

            <EditText
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:id="@+id/txtPer"
            android:layout_marginBottom="15dp"
            android:background="@drawable/textbox"
            android:layout_gravity="center_horizontal"
            android:inputType="textPersonName"/>

当我Toast R.id.txtPer时,它表示null。 这是我的java代码

   @Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
    view = inflater.inflate(R.layout.fragment_add_customer, container, false);
    view.findViewById(R.id.button3).setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View view) {
            doAdd(view);
        }
    });
    return view;
}
public void doAdd(View view) {

    String MobilePattern = "[0-9]{10}";

    EditText tPername = (EditText) getView().findViewById(R.id.txtPer);
    EditText tMobnum = (EditText) getView().findViewById(R.id.txtMob);
if (TextUtils.isEmpty(tPername.getText().toString())) {
    tPername.setError("Please fill this field");
    return;
   } else if (!tMobnum.getText().toString().matches(MobilePattern)) {
        tMobnum.setError("Mobile number must be entered 10 digits only");
        return;
    }

}

2 个答案:

答案 0 :(得分:0)

String name= tPername.getText().toString();

这解决了我的问题。谢谢

答案 1 :(得分:-1)

HistoryApi