Space not working in android -
i have android app accept various inputs user problem not able use space in of edittext fields dont know problem , frustrating...any appriciated.
<edittext android:id="@+id/edt_frm_place" style="@style/normal_customfontstyle" android:layout_width="fill_parent" android:layout_height="40dp" android:background="@drawable/border" android:paddingleft="3dp" android:maxlength="50" android:paddingtop="3dp" android:digits="abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyz1234567890" android:hint="enter place" />
this edittext xml representation
change
android:digits="abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyz1234567890"
to
android:digits="abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyz1234567890 "
which include space
Comments
Post a Comment