如何使EditText在X线行之后自动滚动

时间:2019-05-31 22:20:35

标签: android xml android-layout

我已经找到了很多有关如何使可滚动EditText出现的答案,但是没有人提到如何使文本在X行之后滚动。在我的应用程序中,我需要文本在5行之后自行滚动,否则文本会与下面的图标混合在一起。到目前为止,我一直在限制maxLength以避免这种情况,但是我需要能够编写更多字符,而不必担心它们会与图标混淆。

<EditText
    android:id="@+id/resultText"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentTop="true"
    android:layout_centerHorizontal="true"
    android:layout_marginTop="10dp"
    android:textColorHint="@color/white"
    android:textColor="@color/colorPrimaryDark"
    android:textIsSelectable="true"
    android:gravity="top"
    android:fontFamily="sans-serif"
    android:textSize="25dp"
    android:textStyle="normal"
    android:ems="30"
    android:maxLength="180"
    android:hint="Input here..."
    android:textAlignment="center"
    android:focusable="true"
    android:focusableInTouchMode="true"
    android:inputType="textMultiLine"
    android:overScrollMode="always"
    android:scrollbarStyle="insideInset"/>

1 个答案:

答案 0 :(得分:0)

发现我要搜索的是:

android:lines="5"