Я установил правильную гравитацию на edittext
, и подсказка как 0, как показано ниже
<com.components.MyFontEdittextView
android:id="@+id/etPessanger"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@null"
android:ellipsize="end"
android:hint="0"
android:gravity="right"
android:inputType="numberSigned"
android:maxLines="1"
android:minLines="1"
android:paddingLeft="5dp"
android:paddingRight="5dp"
android:singleLine="true"
android:textColor="@color/color_black"
android:textColorHint="@color/color_app_label"
android:textSize="16.52sp"
tools:text="3" />
, но когда edittext
пусто и подсказка видна, тогда она показывает положение курсора следующим образом:
Я хочу курсор в конце подсказки. (В конце 0) Любое решение?