android – 以编程方式更改图层列表中的形状颜色

android – 以编程方式更改图层列表中的形状颜色,第1张

概述如何以编程方式更改图层列表中形状的颜色(#000000)? 这是我的图层列表: <layer-list xmlns:android="http://schemas.android.com/apk/res/android"> <item> <shape android:shape="rectangle"> <solid android:color="# 如何以编程方式更改图层列表中形状的颜色(#000000)?

这是我的图层列表:

<@R_128_3419@ xmlns:androID="http://schemas.androID.com/apk/res/androID">    <item>        <shape androID:shape="rectangle">            <solID androID:color="#000000" /> // CHANGE THIS color        </shape>    </item>    <item androID:left="5dp">        <shape androID:shape="rectangle">            <solID androID:color="@color/bg" />        </shape>    </item></@R_128_3419@>
解决方法 首先,您需要为您分配ID到层列表项.
<@R_128_3419@ xmlns:androID="http://schemas.androID.com/apk/res/androID"><!-- First assign ID to the List item-->    <item  androID:ID="@+ID/your_shape">          <shape androID:shape="rectangle">            <solID androID:color="#000000" />         </shape>    </item>    <item androID:left="5dp">        <shape androID:shape="rectangle">            <solID androID:color="@color/bg" />        </shape>    </item></@R_128_3419@>

然后通过ID获得你的形状.

LayerDrawable shape = (LayerDrawable) getResources().getDrawable(R.drawable.your_shape)

你可以通过调用来改变形状的颜色

shape.setcolor(color.Black); // changing to black color

编辑

由于getDrawable()已被弃用.使用以下代码行.

LayerDrawable shape = (LayerDrawable) ContextCompat.getDrawable(YourActivity.this,R.drawable.your_shape)
总结

以上是内存溢出为你收集整理的android – 以编程方式更改图层列表中的形状颜色全部内容,希望文章能够帮你解决android – 以编程方式更改图层列表中的形状颜色所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1132792.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-30
下一篇 2022-05-30

发表评论

登录后才能评论

评论列表(0条)

保存