这是我的图层列表:
<@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 – 以编程方式更改图层列表中的形状颜色所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)