Issue
I know use >= but it's working like (>=). How to show >_ on android XML?
<string name="greaterThanOrEqual">>=</string> only show >=
.
I want to show like this :
Solution
Declare to string.xml
<string name="special_symbol" >\u2265</string >
Use
<TextView
android:id="@+id/textView"
android:textSize="20sp"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/special_symbol" />
Refer this file format link
Answered By - Amit Vaghela

0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.