我在谷歌上搜索如何将这些形状转换为 java 代码,但我找不到方法,我也检查了文档,什么也没有......
这些是形状:
shape1.xml:
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:dither="true"
android:shape="oval" >
<gradient
android:endColor="#ffff6600"
android:gradientRadius="150"
android:startColor="#ffffcc00"
android:type="radial"
android:useLevel="false" />
<size
android:height="100dp"
android:width="100dp" />
</shape>
shape2.xml:
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:dither="true"
android:shape="rectangle" >
<solid android:color="#339933"/>
</shape>
这些简单形状的正确 java 代码转换是什么?