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 anyone has done this programmatically before.
These codes require you to hold down the Alt key and type a series of numbers on the numpad. The degree symbol code is Alt + 0176. As soon as you let go of the Alt key, the symbol should appear.
The degree Celsius (symbol: °C) can refer to a specific temperature on the Celsius scale or a unit to indicate a difference or range between two temperatures.
There is a Unicode symbol for Celsius degrees that you can use in Java: \u2103
. For Fahrenheit you can use \u2109
.
I have confirmed this works on Android Nexus S running Android version 2.3.6.
Example code:
temperatureValue.setText((result) + " \u2109");
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With