我正在尝试应用通过代码创建的 ColorStateList 作为 TextView 的 TextColor。
问题是,如果我使用在 xml 中定义的 ColorStateList 它可以工作,但是当我通过代码创建 ColorStateList 时不起作用。
这是我创建 ColorStateList 的方法
int[][] states = new int[][] { new int[] { android.R.attr.state_activated } };
int[] colors = new int[] { Color.parseColor("#FFFF00") };
myList = new ColorStateList(states, colors);
我以这种方式简单地将它应用到 TextView
myTextView.setTextColor(myList);
并且不起作用。使用这个 xml
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_activated="true" android:color="@color/yellow" />
<item android:color="@color/black" />
</selector>
它可以通过这种方式在 xml 和代码中设置文本颜色
myTextView.setTextColor(myTextView.getContext().getResources().getColorStateList(R.drawable.textcolor_selector));
我在网上搜索了一个解决方案,但我真的找不到导致这个问题的原因,任何人都可以帮助我吗?
谢谢你
最佳答案
也许您应该在状态列表中添加一个默认值。在您的情况下,state_activated 的相反状态:
int[][] states = new int[][] { new int[] { android.R.attr.state_activated }, new int[] { -android.R.attr.state_activated } };
int[] colors = new int[] { Color.parseColor("#FFFF00"), Color.BLACK };
myList = new ColorStateList(states, colors);