我需要将我的形状转换为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>
我在我的活动中使用它并产生一个漂亮的形状,如图片吹
这就是我的活动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);
答案 0 :(得分:2)
这是你可以做的。
首先在Java代码中获取drawable
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)
希望有所帮助