Android Custom TextView to show Currency
问题 I need to set a mask for a textview to convert its text to a specific style (Currency, my own though Like this: Rls ###,###,###,### ) but I need to be able to get it's raw text later on. What shall I do? ====================================================== say I will pass this string to the TextView: 2120000 It should be seen by user like : Rls 2,120,000 but the .getText method should return: 2120000 ====================================================== the formatting code would be like