我目前正在使用xml文件作为我的ProgressBar
的drawable,我希望能够让用户选择主题。为此,我希望能够根据他们选择的内容更改ProgressBar
周围的笔划。我是否需要为每个不同的主题创建一个新的可绘制xml,或者我可以使用styles
来更改笔触颜色。中风是我唯一想要改变的东西,因此需要一个全新的可绘制xml似乎有点傻。我可以在styles
文件中添加任何参数来执行此操作吗?
我的ProgressBar
的可绘制xml:
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:id="@android:id/background">
<shape>
<corners android:radius="5dip" />
<stroke android:color="#ffffffff"
android:width="1dp" />
<gradient
android:startColor="#009d9e9d"
android:centerColor="#005a5d5a"
android:centerY="0.75"
android:endColor="#00747674"
android:angle="270"
/>
</shape>
</item>
<item android:id="@android:id/secondaryProgress">
<clip>
<shape>
<corners android:radius="5dip" />
<stroke android:color="#ffffffff"
android:width="1dp" />
<gradient
android:startColor="#80ffd300"
android:centerColor="#80ffb600"
android:centerY="0.75"
android:endColor="#a0ffcb00"
android:angle="270"
/>
</shape>
</clip>
</item>
<item
android:id="@android:id/progress"
>
<clip>
<shape>
<corners
android:radius="5dip" />
<stroke android:color="#ffffffff"
android:width="1dp" />
<gradient
android:startColor="@color/orangelight"
android:endColor="@color/orangedark"
android:angle="270" />
</shape>
</clip>
</item>
</layer-list>
答案 0 :(得分:0)