|
|
@@ -12,6 +12,7 @@ import android.util.AttributeSet;
|
|
|
import android.view.LayoutInflater;
|
|
|
import android.view.View;
|
|
|
import android.view.ViewGroup;
|
|
|
+import android.view.inputmethod.InputMethodManager;
|
|
|
import android.widget.AdapterView;
|
|
|
import android.widget.CheckBox;
|
|
|
import android.widget.EditText;
|
|
|
@@ -41,6 +42,8 @@ import kr.co.zumo.app.lifeplus.view.custom.CustomSpinner;
|
|
|
*/
|
|
|
public class MobileAuthView extends ConstraintLayout implements IMobileAuthContract.View {
|
|
|
|
|
|
+ private Context context;
|
|
|
+
|
|
|
private View buttonConfirm;
|
|
|
private TextView buttonTimeExpansion;
|
|
|
private TextView buttonIdentifyNumberSend;
|
|
|
@@ -107,6 +110,8 @@ public class MobileAuthView extends ConstraintLayout implements IMobileAuthContr
|
|
|
LayoutInflater inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
|
|
|
inflater.inflate(R.layout.sign_up_auth_view, this);
|
|
|
|
|
|
+ this.context = context;
|
|
|
+
|
|
|
scrollViewLinearLayout = findViewById(R.id.linear_layout_identify);
|
|
|
phoneIdentifyLayout = findViewById(R.id.phone_identify_layout);
|
|
|
agreeListLayout = findViewById(R.id.layout_agree_list);
|
|
|
@@ -513,6 +518,13 @@ public class MobileAuthView extends ConstraintLayout implements IMobileAuthContr
|
|
|
|
|
|
}
|
|
|
|
|
|
+ @Override
|
|
|
+ public void showEditTextAuthorizedNumberKeyboard() {
|
|
|
+ editTextAuthorizedNumber.requestFocus();
|
|
|
+ InputMethodManager inputMethodManager = (InputMethodManager) context.getSystemService(Context.INPUT_METHOD_SERVICE);
|
|
|
+ inputMethodManager.showSoftInput(editTextAuthorizedNumber, InputMethodManager.SHOW_IMPLICIT);
|
|
|
+ }
|
|
|
+
|
|
|
/**
|
|
|
* 모든 포커스 제거;
|
|
|
*/
|