I\'m getting this exception when running:
android.view.InflateException: Binary XML file line #8: Error inflating class android.support.v7.widget.RecyclerView
Switching to Android Studio is a better option but the rendering problem is still there.
To remove the same in Android Studio, add the "Gradle Dependencies" into your module.
dependencies {
...
compile 'com.android.support:recyclerview-v7:21.0.+'
}
Hope this helps somebody as it helped me. This is a small change but very annoying.