Edittext Tag Causes Error Inflating Class
After adding EditText to my layout xml my android application's error reporting gives such an exception on some user devices. android.view.InflateException: Binary XML file line #
Solution 1:
The problem was in android:scrollY="10dp" attribute. It caused the above mentioned problem/exception on some models of phones. Though I couldn't reproduce it by myself but after removing that atribute the exception went off and I've got no complaints from the users anymore.
Post a Comment for "Edittext Tag Causes Error Inflating Class"