Android EditText inputType not working -
i trying capitalize first letter of each word input type not working. idea i'm doing wrong here? here xml snippet:
<edittext android:id="@+id/firstname" android:layout_width="match_parent" android:layout_height="wrap_content" android:singleline="false" android:inputtype="text|textcapwords"/>
use these line of code in yours xml
android:inputtype="textcapwords"
Comments
Post a Comment