如何在XML中定义易于重复使用的基本形状(或渐变或角落)?
我有十几个可绘制的渐变,除了开始和结束颜色之外都是相同的。我希望在其他地方定义相同的东西,并为每个不同的渐变定义一个XML文件,只定义开始和结束颜色。这可能吗?
这是基础:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<gradient xmlns:android="http://schemas.android.com/apk/res/android"
android:type="linear"
android:angle="270"
android:startColor="#e1ffffff"
android:endColor="#e100ff00">
<stroke android:width="1dp"
android:color="#ff000000" />
<corners android:radius="4dp" />
</gradient>
</shape>
然后我想在每个drawable的XML文件中覆盖startColor和endColor(也许还有角半径或任何其他属性)。
我尝试使用父级和样式,但它们都没有使用任何属性。例如:
<style name="base_gradient">
<item name="android:angle">270</item>
<item name="android:type">linear</item>
<item name="android:startColor">#e1ffffff</item>
<item name="android:endColor">#e100ff00</item>
</style>
然后drawable看起来像:
<gradient style="@style/base_gradient" />
那不起作用。我尝试将上面的内容放在自己的XML文件中,然后为每个drawable执行此操作:
<gradient parent="@drawable/base_gradient" />
这也不起作用。
有办法做到这一点吗?
答案 0 :(得分:7)
不幸的是我不认为这是可能的。我试图做同样的事情,但找不到解决办法。
我建议将所有值放在资源xml文件中。就我而言,我选择将尺寸放在dimens.xml中,&amp; colours.xml中的integers.xml和颜色(尽管它们可以组合成一个文件)
虽然我最终得到了每种颜色的形状可绘制文件,但至少如果我想调整颜色或填充等,我只需要编辑colours.xml文件integers.xml或dimens.xml文件。
我的一个形状可绘制然后看起来像这样:
<?xml version="1.0" encoding="UTF-8"?>
<shape
xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle" >
<corners
android:radius = "@dimen/radius_corner" />
<!-- end colour at top, start colour at bottom -->
<gradient
android:angle="@integer/gradient_angle_default"
android:endColor="@color/white"
android:startColor="@color/pink_pale"/>
<padding
android:left = "@dimen/my_padding"
android:right = "@dimen/my_padding"
android:bottom = "@dimen/my_padding"
android:top = "@dimen/my_padding" />
</shape>
资源文件链接:http://developer.android.com/guide/topics/resources/more-resources.html
希望这有帮助。