图层列表可绘制对象有时未完全呈现
Posted
技术标签:
【中文标题】图层列表可绘制对象有时未完全呈现【英文标题】:Layer-list drawable is not rendered fully from time to time 【发布时间】:2021-07-24 19:20:52 【问题描述】:我遇到了一个问题,即我的图层列表可绘制对象有时没有完全呈现。
在我的活动的 onCreate 中,我以编程方式创建了几个 TextView,在 onResume 中,我正在调用 Web 服务,并在得到响应后相应地更新此 TextView。
TextView tv = getView().findViewWithTag(tag);
if ((int) wt.getCustomerId() == Const.CUSTOMER_xxx)
tv.setBackgroundResource(R.drawable.tile_sended_xxx);
else
switch ((int) wt.getActivityId())
case Const.ACTIVITY_WALK:
tv.setBackgroundResource(R.drawable.tile_sended_walk);
break;
case Const.ACTIVITY_AUTO:
tv.setBackgroundResource(R.drawable.tile_sended_auto);
break;
default:
tv.setBackgroundResource(R.drawable.tile_sended_work);
break;
还有我的一个可绘制对象(蓝色背景,咖啡图标):
<item>
<shape
android:padding="0dp"
android:shape="rectangle">
<solid android:color="@color/tile_sended_xxx"/>
<corners
android:bottomLeftRadius="4dp"
android:bottomRightRadius="4dp"
android:topLeftRadius="4dp"
android:topRightRadius="4dp"/>
</shape>
</item>
<item
android:drawable="@drawable/coffee"
android:gravity="center">
</item>
问题是有时只渲染背景(黄色/蓝色),但图标不可见。
它发生在不同的模拟器中,它发生在真实设备上。
我不知道如何调试/解决这个问题。任何帮助将不胜感激。
我还添加了一些屏幕以显示 Android Studio 显示正常。
【问题讨论】:
【参考方案1】:解决了,我在其他地方设置了drawables tint color,即黄色,并且该更改已保存到资源中以供以后使用。后来当使用图层列表时,我在黄色背景上绘制了黄色(而不是黑色)。
所以不要改变“全局”资源:
Drawable d = ContextCompat.getDrawable(getActivity(), R.drawable.walk);
d.setTint(getActivity().getColor(R.color.tile_sended));
mutate() 应该用于制作“本地”资源副本:
Drawable d = ContextCompat.getDrawable(getActivity(), R.drawable.walk).mutate();
d.setTint(getActivity().getColor(R.color.tile_sended));
【讨论】:
以上是关于图层列表可绘制对象有时未完全呈现的主要内容,如果未能解决你的问题,请参考以下文章