Android Error inflating class EditText
Using 2.2.x version of the gradle plugin could cause this.
Bug tracker link
Downgrading might worth a try:
// project level build.gradle
dependencies {
classpath 'com.android.tools.build:gradle:2.1.0'
}
I suppose it will be fixed eventually, so future readers can try upgrading instead of downgrading :)
Same issue: Solved. My image files were in the "drawable-v24" folder. Move them to the "drawable" folder too. Problem solved.