my app keeps stopping in android emulator [closed]

Look at this line

Caused by: java.lang.ClassCastException: android.support.design.widget.TextInputEditText cannot be cast to android.support.design.widget.TextInputLayout

It tells you, you are trying to cast an object of type TextInputEditText to a TextInputLayout.

Now, look at the next line:

at com.myiscaeproject.az.myapp.activities.MainLogIn.initViews(MainLogIn.java:54)

it tells you, it happens in line 54 of your MainLogIn.java file.

Learn to read stack traces, it helps a lot.

Leave a Comment