When I define a style, it can be inherited from a parent style, e.g:
<style name="DialogNoTitle" parent="@android:style/Theme.Dialog">
<item name="android:windowNoTitle">true</item>
</style>
Now I want to do the same with drawable resources, something like this:
<shape xmlns:android="http://schemas.android.com/apk/res/android" name="ChildDrawable" parent="@drawable/ParentDrawable">
<solid android:color="@android:color/white"/>
<corners android:radius="6dp"/>
</shape>
Is there a way to accomplish this functionality?
Short answer - you cannot extend and override drawables. However,
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With