We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Occurs at line 191
this.fabDrawable = typedArray.getDrawable(styleable.FabSpeedDial_fabDrawable);
org.xmlpull.v1.XmlPullParserException: Binary XML file line #1: invalid drawable tag vector
This happens when running on API < 21
I guess you should use the app compat functions to set the FAB drawable and to load drawables:
AppCompatResources.getDrawable(context, R.drawable.ic_close)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Occurs at line 191
this.fabDrawable = typedArray.getDrawable(styleable.FabSpeedDial_fabDrawable);
This happens when running on API < 21
I guess you should use the app compat functions to set the FAB drawable and to load drawables:
AppCompatResources.getDrawable(context, R.drawable.ic_close)
The text was updated successfully, but these errors were encountered: