how we can display pound and euro symbol in android TextView?
You can copy and paste them. € £
Here is a list of more unicode characters
String euro = "\u20ac";
String pound = "\u00a3";
tvAmount.setText(euro);
tvCurrency.setText(pound);
And also you can check list of other symbol here
More appropriate way will be to do it using Currency
.
String euro = Currency.getInstance(Locale.GERMANY).getCurrencyCode();
String pound = Currency.getInstance(Locale.UK).getCurrencyCode();