嗨,我正在使用包含登录屏幕的 android 应用程序。在我的登录屏幕中,我有用户名和密码编辑文本字段。在edittext中,我需要居中对齐的提示为“输入您的用户名”,因此我将edittext字段的重力设置为“中心”,但现在问题是光标在中心位置也可见,我需要光标在左侧。我还尝试了下面的编码。
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.