-
Notifications
You must be signed in to change notification settings - Fork 89
New issue
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
Invaild drawable tag ripple #20
Comments
Could you share your xml code? And please checkout which version are u using |
A using 2.0 version ('com.github.ozodrukh:RippleDrawable:2.0.0) XML code:
|
Of course I mean I have this error when I try to run app, have no error when building |
I think i have a same issue. Mostly on Samsung (maybe little more manufacturers), on other devices all is ok.
simple_highlight_light_ripple.xml:
Maybe problem is in @android:id/mask? Version of RippleDrawable 2.0.0. Anyway, Thanks for your great job) |
Same error is happening here on a Samsung Galaxy Tab. With this drwable xml: <?xml version="1.0" encoding="utf-8"?>
<ripple xmlns:android="http://schemas.android.com/apk/res/android"
android:color="@color/gris_sombra">
<item>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<corners android:radius="2dp" />
<solid android:color="@android:color/white" />
<stroke android:width="1dp" android:color="@color/ColorPrimary"/>
</shape>
</item>
</ripple> It is working right with other devices |
Same issue here |
Going to fix it in this weekend😉 Edit |
same issue here, any updates? |
same issue here. To fix it I use my own colors, try this drawable: <?xml version="1.0" encoding="utf-8"?>
<ripple
xmlns:android="http://schemas.android.com/apk/res/android"
android:color="#000">
<item>
<shape android:shape="oval">
<solid android:color="#6c6"/>
</shape>
</item>
</ripple> |
When I try to build app with this liblary I have error: invaild drawable tag ripple
I based on the samples and I dont know what is wrong 😶😶
The text was updated successfully, but these errors were encountered: