当我定义样式时,它可以从父样式继承,例如:
<style name="DialogNoTitle" parent="@android:style/Theme.Dialog">
<item name="android:windowNoTitle">true</item>
</style>
现在我想对可绘制资源做同样的事情,如下所示:
<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>
有没有办法完成此功能?
答案 0 :(得分:5)
简短回答 - 您无法扩展和覆盖drawable。但是,