Cannot resolve symbol Digits.Builder()

129 Views Asked by At

I want to change the theme of the Digits screen , and also the text on the button that is provided by default.

1

There are 1 best solutions below

2
Jai Khambhayta On

change the background of the digit whatever color you want set it,same as settextColor like,

button.setTextColor(0xff0000);

or

button.setTextColor(Color.parseColor("#ff0000"));

or

button.setTextColor(getApplication().getResources().getColor(R.color.red));

set color to the layout as:

v.setBackgroundColor(0xFF00FF00);