我想在不更改我的应用程序或活动主题的情况下将值资源引用设置为一种样式。
例如:
vector.xml
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:height="24dp", android:width="24dp"
android:viewportWidth="24", android:viewportHeight="24">
<path android:fillColor="?mycolor" android:pathData="8,L5,5L8,1" />
</vector>
attrs.xml
<resources>
<attr name="mycolor" format="reference" />
</resources>
style.xml
<style name="colorscheme">
<item name="myColor">@color/red</item>
</style>
换句话说,我如何将可绘制的fillcolor设置为@ color / red?