There is a button, instead of text, the code for displaying the \u232B symbol in the editor window is displayed correctly as shown in the screenshot, but when the application is started, the button is empty 
- In general, I noticed that in android many Unicode characters are not displayed. Maybe it's easier to draw a picture and put it on the button? Here, by the way, is the answer to your symbol on stackoverflow.com/questions/20078789/… - Kirill Malyshev
- Well, as if I know that you can draw a picture, I would like to understand what is the problem - java
- oneThis character is not supported by the font. - Kirill Malyshev
- Try downloading groups.google.com/group/tamil_ulagam/attach/47953ebb6d9f23d4/... font and specify it for view as here = stackoverflow.com/questions/27499270/… - Kirill Malyshev
- @ Kirill Malyshev, did not work - java
|
1 answer
I solved the problem in the following way: I downloaded the icon here and changed the Button to ImageButton
<ImageButton android:id="@+id/button_C" android:tag="C" android:layout_width="wrap_content" android:layout_height="wrap_content" android:paddingBottom="16dp" android:paddingLeft="33dp" android:paddingRight="33dp" android:layout_gravity="center" android:paddingTop="16dp" android:src="@drawable/ic_backspace_black_18dp" /> |
