I want to display dynamically text in textview.
for example:
Like red color mark. to see celsius temperature symbol.
java code:
TextView txt_footer = new TextView(this);
txt_footer.setLayoutParams(childLayoutParams);
txt_footer.setText(weather.getMinTemp());
Please help me.