当我尝试使用StateListDrawable
时,我有一种非常奇怪的现象:
我有一个扩展ImageView
的视图,我在其构造函数中使用StateListDrawable
。
我有2个代码片段,以提出我的问题。
第一个:
public class MyView extends ImageView{
Resources r = getResources();
Drawable filteredDrawable = r.getDrawable(R.drawable.smallsale);
filteredDrawable.setColorFilter(new LightingColorFilter(Color.RED, 1));
setImageDrawable(filteredDrawable);
}
第二个:
public class MyView extends ImageView{
Resources r = getResources();
Drawable filteredDrawable = r.getDrawable(R.drawable.smallsale);
filteredDrawable.setColorFilter(new LightingColorFilter(Color.RED, 1));
StateListDrawable states = new StateListDrawable();
states.addState(new int[] {android.R.attr.state_pressed}, filteredDrawable);
states.addState(new int[] {android.R.attr.state_focused}, filteredDrawable);
states.addState(new int[] {}, r.getDrawable(R.drawable.smallsale));
//Notice I do not use 'states' at all...
setImageDrawable(filteredDrawable);
}
(我知道这段代码没有多大意义 - 我想简化问题以使问题更清晰)。问题是,在第一次正确的时候一切正常 - 我在drawable上设置了一个彩色滤镜,并显示出来。但是在第二个片段中,StateListDrawable
实例以某种方式影响过滤器,并且正在显示原始 drawable,即使我从未通过调用{ImageView
将其连接到setImageDrawable(states)
{1}}。
有人可以向我解释发生了什么事吗?
我的目标是使用具有相同drawable的StateListDrawable
用于不同的状态,如下所示:
StateListDrawable states = new StateListDrawable();
states.addState(new int[] {android.R.attr.state_pressed}, filteredDrawable);
states.addState(new int[] {android.R.attr.state_focused}, filteredDrawable);
states.addState(new int[] {}, r.getDrawable(R.drawable.smallsale));
setImageDrawable(states);
(我需要通过代码来实现,因为我的drawable应该从网上动态加载,而不是作为资源加载)
答案 0 :(得分:3)
确定。 我找到了this post
事实证明StateListDrawables
由于某种原因失去了过滤器......
我采用了SnoK的解决方案,它对我很有用。
我不知道为什么谷歌不认为应该在文档上注明副作用......