以前はAppController
、アプリケーションから拡張されたクラスを使用し、マニフェストで追加されました。今、私はsignupModel
クラスを準備しています。このクラスではLayoutInflater
、コンテキストのために必要です。しかし、デバッグ時には、コンテキストにはAppController
. ただし、コンテキストが含まれていない必要がありますAppController
か?
public class SignUpModel {
Context context ;
EditText signup_email;
public SignUpModel(Context context){
this.context = context;
LayoutInflater inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View view = inflater.inflate(R.layout.activity_sign_up,null);
signup_email = (EditText) view.findViewById(R.id.signup_email);
}
public String getEmail() {
return signup_email.getText().toString();
}
}