I am using EditText and providing some Hint there. I am putting it like this:
android:hint="@string/user_name_hint"
android:textColorHint="#ffffff"
android:gravity="left"
But here hint is coming in the left side. But i want the hint is in the middle of the box and when i am clicking the text should start from the left.
How it is possible??
Use this
EditTextThen you need to add
addTextChangedListenerto solve your problem.