のようなものを持つことは可能ですか?
drawable/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);