Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Samsung keyboard issue comma is not showing

Tags:

android

enter image description here

I am trying to show comma when user click on edittext but it is not showing in samsung devices except it it is working but not showing comma i have assign inputvalue is 0123456789, in xml as well as in java code(Activity) also and input type is

 android:digits="0123456789,"
android:inputType="numberDecimal"
like image 319
Yogesh Tatwal Avatar asked Feb 05 '14 11:02

Yogesh Tatwal


1 Answers

please change

android:digits="0123456789," 
android:inputType="numberDecimal"

with this

android:inputType="phone" android:digits="0123456789,"

It will show and accept, on symbol hope this answer will help you

like image 88
Narayan soni Avatar answered Oct 20 '22 23:10

Narayan soni