Привет! Я сталкиваюсь с ошибкой приведения типа в студии android и не могу ее решить. - PullRequest
0 голосов
/ 26 апреля 2020

Logcat отображает:

Caused by: java.lang.ClassCastException: androidx.appcompat.widget.AppCompatEditText cannot be cast to com.google.android.material.textfield.TextInputLayout
        at com.example.makemeup.Signup.onCreate(Signup.java:45)

Это сегмент кода, на который указывает вышеуказанная ошибка:

   @SuppressLint("WrongViewCast")
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_signup);
        Log.i(Tag, "OnCreate");


        textInputName = findViewById(R.id.text_input_name);
        textInputUser = findViewById(R.id.text_input_userid);
        textInputPassword = findViewById(R.id.text_input_password);
        textInputEmail = findViewById(R.id.text_input_email);
        Hopin = (Button) findViewById(R.id.b_hopin);

        //Hopin.setOnClickListener(this);
    }

Пожалуйста, помогите мне разобраться.

...