Error inflating class android.support.design.widget.FloatingActionButton
Tried your code, the problem is with the 23.4.0 library. Upgrade to 24.+ , there’s no error in that lib. For example : You need to change the compile version to 24 too.
Tried your code, the problem is with the 23.4.0 library. Upgrade to 24.+ , there’s no error in that lib. For example : You need to change the compile version to 24 too.
You are trying to run a Python 2 codebase with Python 3. xrange() was renamed to range() in Python 3. Run the game with Python 2 instead. Don’t try to port it unless you know what you are doing, most likely there will be more problems beyond xrange() vs. range(). For the record, what you are seeing is not a syntax error … Read more