So, I'm writing an app that involves using some mathematical symbols. I'm doing this in the visual XML editor. Is there any way I can get, say, an integral symbol, or a "less than or equal to" symbol? Things like that.
Thanks!
So, I'm writing an app that involves using some mathematical symbols. I'm doing this in the visual XML editor. Is there any way I can get, say, an integral symbol, or a "less than or equal to" symbol? Things like that.
Thanks!
Try put they as HTML.
String htmlStringWithMathSymbols = "≤ ≥";
textView.setText(Html.fromHtml(htmlStringWithMathSymbols));
Here you can display your math symbol in textView
Here the post http://www.hrupin.com/2011/12/how-to-put-some-special-math-symbols-in-textview-editview-or-other-android-ui-element
Hope, it help you!
Use < for <, > for > and & for &.
or
< less than <
> greater than >
& ampersand &
¢ cent ¢
£ pound £
¥ yen ¥
€ euro €
§ section §
© copyright ©
® registered trademark ®
™ trademark ™
For inserting special unicode characters (including math symbols) in Android through XML, all you have to do is include the HTML code of the unicode character with the &#<uni-code>;
in XML. For example, if you want to display the mathematical symbol 'Pi', in a button view of your XML file corresponding to your activity (main.xml for e.g.), you will have the following in main.xml:
<Button
...
android:text="@string/button_pi"
...
</Button>
Then you will identify the string resource 'button_pi' included above, in the strings.xml file as detailed below
<string name="button_pi"> Π</string>
Now, when you build and run your code, you will see the symbol of pi displayed nicely in your view. The links below provide the complete table of HTML code for all uni-code character set (including all the special symbols)
http://www.w3schools.com/tags/ref_symbols.asp
http://www.ascii.cl/htmlcodes.htm
I once had to do something similar to that, putting in foreign language characters in an XML file. The best, and as far as I know, and only way is to put the text you want to show in the strings.xml file and refer to them in the XML as @string/your_text_declaration_here
. It's also generally good practice to put all text in the string.xml file regardless of special characters or not.
any of the following ∫ ∫ ∫ ∫
will produce an integral sign : ∫
∬ can be achieved with ∬ ∬
∭ can be achieved with ∭
∮ can be achieved with ∮
There is a commercial product for converting math / source code special symbols in XML text elements to valid XML with all the classes and starter source code to integrate into applications, allowing you to have special characters remain in your text elements (called XPL files rather than XML), and convert to valid XML during processing.
There is a free version that you can use from the command line that also ensures that your file types are as specified (for example ISO-8859-1 if you use characters like å,ä,ö, etc. s.c. latin-1 char set).
Code from the High Level Logic Project