2017-09-22 40 views
-1

我有一個EditText,用戶可以放入所需數量的產品。EditText,如何開始從頭到尾打字?

現在我想要做的是,EditText輸入從結尾開始並填充到開頭。

實施例:

金額:_ _ _ _ 4 5

和不

量:4 5 _ _ _ _

的_ _ _應該表現出的EditText。

在此先感謝。

+2

檢查[此問題](https://stackoverflow.com/questions/7813310/how-do-i-position-the-cursor-on-the-right-in-edittext) –

+1

add android:gravity =「結束「到」EditText「。 – Abbas

回答

1

設置android:gravity="end"

<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 
0

嘗試使用android:gravity="end"Edittext的:

如下面的代碼

<EditText 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    android:gravity="end" 
    android:hint="@string/app_name" /> 
0

試試這個android:gravity="start"Editext

0

試試這個會有用。

<EditText 
android:layout_width="match_parent" 
android:layout_height="wrap_content" 
android:gravity="right" 
    /> 
0

您可以添加以下行EDITTEXT android:textDirection="anyRtl"或更詳細See here

0

如果你想填的EditText從端嘗試下面的代碼...

android:gravity="end"

0

你可能以編號方式使用多個輸入類型爲數字的EditText和控制焦點流程。

相關問題