I am not able to represent e^(z)
in android studio.
Also to represent z^(2)
.
How can I use these as a text inside text view? Please help..
I am not able to represent e^(z)
in android studio.
Also to represent z^(2)
.
How can I use these as a text inside text view? Please help..
Try to set the text by code as a HTML string
TextView tv = (TextView)findViewById(R.id.textview);
tv.setText(Html.fromHtml(txtString));