How can I add a placeholder text to EditText in the class that isn\'t in the XML?
EditText
I have the following EditText in my code which will be sh
This how to make input password that has hint which not converted to * !!.
On XML :
android:inputType="textPassword" android:gravity="center" android:ellipsize="start" android:hint="Input Password !."
thanks to : mango and rjrjr for the insight :D.