有没有可能有类似的东西
可绘制/myshape.xml
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid android:color="{0}" />
</shape>
然后从 java 类中获取这个可绘制的传递值作为参数。就像是
Drawable myshape = ???.getDrawableWithParameters(R.drawable.myshape, 0x00ff00);