我正在为Android开发应用程序。在我的活动中,它包含一个相对布局。我想设置环型背景。所以我使用以下代码。
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="ring"
android:innerRadius="0dp"
android:thickness="200dp"
android:useLevel="false">
<solid
android:color="#0f000000"/>
<corners
android:radius="10dp" />
</shape>
工作正常。现在我想以编程方式更改上面代码中的厚度。我该如何更改?