小编典典

Android:多行EditText(文本区域)的垂直对齐

all

我想要 5 行作为文本区域的高度。我正在使用以下代码。

<EditText
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:gravity="center"
    android:singleLine="false"
    android:lines="5"
    android:layout_marginLeft="10dip"
    android:layout_marginRight="10dip" />

文本区域看起来不错,但问题是光标在文本字段的中间闪烁。我希望它在第一行,在文本字段的第一个字符处闪烁。


阅读 77

收藏
2022-06-01

共1个答案

小编典典

利用android:gravity="top"

2022-06-01