How to set the cursor to the right with right align and hint text?
Is it possible?
I have a AutoCompleteTextView and a EditText with Text right align and an hint text.
Now if one of them is focused the curser is before the hint and not at the end of the line.
So it looks like now it's bad...
I've also tried to set the cursor position, but it didn't help of course.
<AutoCompleteTextView
android:id="@+id/input_snm"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentRight="true"
android:layout_below="@+id/input_ipAdresse"
android:ems="10"
android:gravity="right"
android:hint="@string/input_snm"
android:imeActionLabel="@string/Button_berechnen"
android:imeOptions="actionDone|flagNoExtractUi"
android:inputType="phone"
android:paddingRight="@dimen/padding_small"
android:textSize="@dimen/fontsize_medium" />
Image: EditText
Ok, I think it's an System error, isn't it?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…