CurrencyEditText icon indicating copy to clipboard operation
CurrencyEditText copied to clipboard

A simple EditText input designed to input decimal and currency values.

Results 4 CurrencyEditText issues
Sort by recently updated
recently updated
newest added

How to reproduce: Type 1000, then drag cursor to start, then type 9. You typed 91000 thats correct, but now the cursor is at the end.

bug
help wanted
hacktoberfest

There must be something wrong or what? I've tried cetPayment.setLocale(new Locale("hr", "HR")); What could be the problem? Or is it that you don't use decimals here? I'm getting 4.588.888.888 and...

Hello, Thanks. I want to text to be on left. None of this options does not help: `android:gravity="start" ` ``` android:textDirection="locale" android:textAlignment="viewStart" ``` programmatically: `binding.etAmount.gravity = Gravity.LEFT`

When the input is 3 char long (example: "123") you cannot add a decimal separator (dot). I fixed my code by changing [line 281](https://github.com/yigitserin/CurrencyEditText/blob/master/currencyedittext/src/main/java/com/yigitserin/currencyedittext/CurrencyEditText.java#L281) to ` if (parts.length > 1)...