I am trying to set backgroundColor of CheckBox by code. Its not working on xperia series. same code has tested other deices which is working on samsung and motorola.
CheckBox checkBox = (CheckBox) findViewById(R.id.checkbox);
checkBox.setBackgroundColor(Color.RED);
that is showing black background in xperia only. If I am doing that by xml that is working.
Please let me know if there is any known issue for xperia series.
Thanks in advance.