2013-07-02 62 views
9

我有一個EditText(?simple?)問題。每當我輸入它時,即使我到達屏幕的邊緣而不是創建新的線條,文本仍保持在同一行中。我相信,我記得之前在默認情況下這樣做,但我似乎無法得到它的工作知道...Android:EditText - 多行和android:inputType

<EditText 
     android:id="@+id/title" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:hint="@string/hint" 
     android:inputType="textCapSentences" /> 

編輯:這個問題是因爲有安卓的inputType。有沒有辦法讓輸入類型有多行?

回答

30

通過用管道「|」分隔標誌,可以在輸入類型上設置多個屬性。字符。試試像這樣的設置:

android:inputType="textCapSentences|textMultiLine" 
+1

謝謝!完美工作:-) – RiThBo

+0

很高興做到了。隨時點擊答案上的「接受」。 –

+0

For inputType =「number」http://stackoverflow.com/questions/17153237/android-multiline-number-edittext –