Hi I am working with android app which contains login screen. In my login screen, I have Username and Password edittext fields. In edittext I need the hint as "Enter your Username" in center aligned, So I sets the gravity as "center" for edittext field but now the problem is the cursor also visible in center position, I need cursor in left positioned. And I also tried the below coding.
edtUserName.setSelection(1);
This is my xml code:
<EditText
android:id="@+id/edt_login_username"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/bg_txt_field"
android:ellipsize="start"
android:focusableInTouchMode="true"
android:hint="Enter Username"
android:maxLines="1"
android:singleLine="true"
android:textStyle="italic"
android:typeface="serif" android:gravity="center">
</EditText>
Please help me to solve this problem. Thanks in advance.