有没有办法从正在使用它的xml中设置已定义的可绘制资源的属性。 请考虑以下示例:
假设我们有可绘制的xml文件,名为“orange_btn”的形状说:
<?xml version="1.0" encoding="UTF-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="@color/ripe_orange"/>
<corners android:bottomRightRadius="16dp" android:bottomLeftRadius="16dp"
android:topLeftRadius="16dp" android:topRightRadius="16dp"/>
</shape>
并假设我们有一些布局xml包含图像按钮,如下所示:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/white"
android:orientation="vertical">
<ImageView android:id="@+id/clouds"
android:layout_width="32dp"
android:layout_height="32dp"
android:src="@drawable/orange"/>
</RelativeLayout>
假设我想更改其中一个形状属性,比如布局xml中的角半径,我该怎么做?