EidtText設定SingleLine自動改行不可

622 ワード

 <EditText 
        android:id="@+id/addContent"
        android:layout_height="200dp"
        android:layout_width="match_parent"
        android:hint="@string/add_content_hint_text"
        android:gravity="bottom"
        android:singleLine="false"
        android:inputType="text"
        android:layout_marginTop="5dp"/>

ずっと使ってた
android:singleLine="false"

自動改行を設定して、今日は急にダメになって、最初は固定のheightを設定したせいかと思って、何度も振り回された結果、検索したのはinputTypeを設定したせいで、inputTypeを削除してsingleLineを設定するのはfalseに等しい!