我有一个ColorStateList将它应用到我的ListView中,但问题是如何将它应用到我的View?我尝试了setBackgroundColor()或setBackground(),但它是错误的。那么如何应用呢?
这是我的代码
int[][] states = new int[][] {new int[] { }, new int[] { android.R.attr.state_selected}};
int[] colors = new int[] {Color.BLACK, Color.RED};
ColorStateList myColorStateList = new ColorStateList(states, colors);