Is there a way to include the small circular degrees symbol to a TextView? This would be for temperature readings, as in degrees Celsius or Fahrenheit. I\'m wondering if any
If you need only the degree (o) circle symbol you can copy below code.
char tmp = 0x00B0; temperature.setText("60"+tmp);
Hope it helps :)