Hello dear stackoverflower,
In my project, i am using the new \"android design library\". The problem is, that there is a runtime exception which says(Im trying to c
In my case, I had an error at setContentView(R.layout.my_layout). In my_layout, I was using app:errorEnabled="true" in a TextInputLayout which caused the error. Removed that line, and it worked.
setContentView(R.layout.my_layout)
my_layout
app:errorEnabled="true"
TextInputLayout