1. 程式人生 > >筆記——android EditText多行顯示並且支援imeOptions

筆記——android EditText多行顯示並且支援imeOptions

最近用到EditText的imeOptions的屬性,然後條件是在xml中將singleLine設定成true,或者將inputType設定成text,多行顯示預設是不支援imeOptions的屬性,最後在網上查到了下面的方法(原文連結)。即

xml
android:inputType="text|textCapSentences"
java
editText.setHorizontallyScrolling(false);
editText.setMaxLines(Integer.MAX_VALUE);