在Multiline Edittext

时间:2016-09-07 13:37:02

标签: android android-edittext

我尝试过android:singleLine,maxLines,lineSpacing属性,但我的EditText始终显示下一行的一部分。如何强制它一次显示一行?

<EditText
    android:layout_width="match_parent"
    android:layout_height="30dp"
    android:id="@+id/formulaView"
    android:textColor="#000000"
    android:textCursorDrawable="@drawable/visible_cursor"
    android:background="#ffffff"
    android:layout_marginTop="1dp"
    android:textSize="18sp"
    android:maxHeight="30dp"
    android:gravity="center_vertical"
    android:layout_marginBottom="1dp"
    android:paddingStart="10dp"
    android:paddingEnd="10dp"
    android:scrollbars="vertical"
    android:imeOptions="actionNext"
    android:completionThreshold="1"
    android:inputType="textMultiLine|textNoSuggestions"/>

enter image description here

1 个答案:

答案 0 :(得分:0)

不要使用

android:inputType="textMultiLine|textNoSuggestions"

改为使用:

android:inputType="textNoSuggestions" 

代码:

<EditText
        android:layout_width="match_parent"
        android:layout_height="30dp"
        android:id="@+id/formulaView"
        android:textColor="#000000"
        android:background="#ffffff"
        android:layout_marginTop="1dp"
        android:textSize="18sp"
        android:text="=SUM(android,Hello,How,Are,You) GoodMorining"
        android:maxHeight="30dp"
        android:gravity="center_vertical"
        android:layout_marginBottom="1dp"
        android:paddingStart="10dp"
        android:paddingEnd="10dp"
        android:scrollbars="vertical"
        android:imeOptions="actionNext"
        android:completionThreshold="1"
        android:singleLine="true"
        android:inputType="textNoSuggestions"/>

希望这会有所帮助。

祝你有个美好的一天。