绘制形状 - 将 XML 转换为代码

Draw shape - Convert XML into Code

我需要将我的形状转换成 java 代码(生成程序)以动态方式设置我的形状颜色,这是我的 形状 XML

<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item
    android:width="5dp"
    android:height="50dp"
    android:bottom="0dp"
    android:left="0dp">
    <shape android:shape="rectangle">
        <solid android:color="@color/white" />
    </shape>
</item>

<item
    android:width="50dp"
    android:height="5dp"
    android:bottom="0dp"
    android:top="45dp">
    <shape android:shape="rectangle">
        <solid android:color="@color/white" />
    </shape>
</item>

我在我的 activity 中使用它并生成了一个漂亮的形状,就像照片吹的那样

这是我的 activity XML

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/gray"
android:gravity="center"
android:orientation="vertical"
tools:context="ir.vasl.testdrawable.MainActivity">

<RelativeLayout
    android:layout_width="250dp"
    android:layout_height="250dp"
    android:background="@color/black">

    <RelativeLayout
        android:layout_width="50dp"
        android:layout_height="50dp"
        android:layout_alignParentBottom="true"
        android:layout_alignParentLeft="true"
        android:layout_alignParentStart="true"
        android:background="@drawable/border_list_item_album_art" />

    <RelativeLayout
        android:layout_width="50dp"
        android:layout_height="50dp"
        android:layout_alignParentEnd="true"
        android:layout_alignParentRight="true"
        android:layout_alignParentTop="true"
        android:background="@drawable/border_list_item_album_art"
        android:rotation="180" />

</RelativeLayout>

现在我只需要通过代码生成这个形状来动态设置边框颜色,谢谢你的帮助;)

更新:

我用这段代码实现了形状变色,希望对大家有帮助

    LayerDrawable shape = (LayerDrawable) ContextCompat.getDrawable(MainActivity.this
            , R.drawable.border_list_item_album_art);
    shape.setColorFilter(Color.RED, PorterDuff.Mode.MULTIPLY);
    findViewById(R.id.border_left).setBackgroundDrawable(shape);

您可以执行以下操作。

首先在Java代码

中获取你的可绘制对象
LayerDrawable shape = (LayerDrawable) 
getResources().getDrawable(R.drawable.your_shape)

然后像这样改变颜色

shape.setColor(Color.RED);

此外,getDrawable 已被删除,因此您也可以使用它

LayerDrawable shape = (LayerDrawable) 
ContextCompat.getDrawable(MainActivity.this,R.drawable.shape_name)

希望对您有所帮助