If I have something such as:
TextView description_label;
description_label.setText("Information");
How can I choose/set the colour of the text. Eg. have 'Information' in green
If I have something such as:
TextView description_label;
description_label.setText("Information");
How can I choose/set the colour of the text. Eg. have 'Information' in green
TextView description_label;
description_label.setTextColor(Color.GREEN);
description_label.setText("Information");