我有一個EditText,用戶可以放入所需數量的產品。EditText,如何開始從頭到尾打字?
現在我想要做的是,EditText輸入從結尾開始並填充到開頭。
實施例:
金額:_ _ _ _ 4 5
和不
量:4 5 _ _ _ _
的_ _ _應該表現出的EditText。
在此先感謝。
我有一個EditText,用戶可以放入所需數量的產品。EditText,如何開始從頭到尾打字?
現在我想要做的是,EditText輸入從結尾開始並填充到開頭。
實施例:
金額:_ _ _ _ 4 5
和不
量:4 5 _ _ _ _
的_ _ _應該表現出的EditText。
在此先感謝。
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="end"
android:hint="type here" />
您可以使用
android:textDirection="rtl" // Works if you set MIN API level 17
嘗試使用android:gravity="end"
Edittext
的:
如下面的代碼
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="end"
android:hint="@string/app_name" />
試試這個android:gravity="start"
您Editext
試試這個會有用。
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="right"
/>
您可以添加以下行EDITTEXT android:textDirection="anyRtl"
或更詳細See here
如果你想填的EditText從端嘗試下面的代碼...
android:gravity="end"
你可能以編號方式使用多個輸入類型爲數字的EditText和控制焦點流程。
檢查[此問題](https://stackoverflow.com/questions/7813310/how-do-i-position-the-cursor-on-the-right-in-edittext) –
add android:gravity =「結束「到」EditText「。 – Abbas