我正在尝试使用提示文本制作EditText:
用英文“password”..光标正确设置在左侧.
但对于提示为“كلمهالمرور”的阿拉伯语,光标始终设置为左侧(提示的结尾)而不是右侧.
android:id="@id/ETPass"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@id/etUsrName"
android:layout_marginLeft="@dimen/_25sdp"
android:layout_marginRight="@dimen/_25sdp"
android:layout_marginTop="@dimen/_5sdp"
android:background="@drawable/signup_edittext_input"
android:ellipsize="start"
android:gravity="center|right"
android:hint="@string/Password"
android:imeOptions="actionNext"
android:inputType="textPassword"
android:paddingRight="@dimen/_5sdp"
android:singleLine="true"
android:textColor="@color/orange"
android:textColorHint="@color/orange" />
这仅适用于android:inputType =“textPassword”.对于普通文本inputType,一切正常.