I\'m trying to make my ICS (API level 15) app compatible with Gingerbread (API level 10), and I\'m getting InflateException Error inflating class
Please check android support v7 - appcompat project. It has many themes and attributes for backwards compatibility (attr/dividerHorizontal also)
http://developer.android.com/tools/support-library/features.html#v7-appcompat
To use v7 support you must import it as an Android lib project and reference to it from you project. It also contains v4 support so you may want to remove v4 support in your libs folder :) Good luck!!