我需要一个 EditText 来填充我的窗口高度。我正在使用这个:
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="true" >
<EditText
android:id="@+id/text_editor"
android:layout_width="match_parent"
android:layout_height="fill_parent"
android:background="#ff0000"
android:gravity="top|left"
android:inputType="textMultiLine"
android:textColor="@android:color/white" />
</ScrollView>
但我得到的只是一行 EditText,一旦我在多行输入返回按钮时写了一些东西,它就会更长且可滚动。我知道我可以设置行号,但在这种情况下,它应该在不同的设备上工作,并且每个设备(我猜)都有不同数量的行。
如何强制它填充设备的高度?
有小费吗?