zhangzengfei
2020-03-31 0ce893695d32ab686f9e2309509e80c6feb0d380
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
package com.basic.security.fragment;
 
import android.text.TextUtils;
import android.widget.EditText;
import android.widget.TextView;
 
import com.basic.security.R;
import com.basic.security.base.BaseFragment;
 
import org.androidannotations.annotations.EFragment;
import org.androidannotations.annotations.ViewById;
 
 
@EFragment(R.layout.fragment_su_auto_ic_wait_phone)
public class SuAutoIcWaitPhoneFragment extends BaseFragment {
 
    @ViewById
    public EditText phone;
    @ViewById
    public TextView name, idcard_number;
 
    public boolean detailMessageIsComplete() {
        if (!TextUtils.isEmpty(phone.getText().toString().trim())) {
            return true;
        } else {
            return false;
        }
    }
 
 
}