gpt4 book ai didi

android - EditText 自动换行

转载 作者:太空狗 更新时间:2023-10-29 15:46:07 29 4
gpt4 key购买 nike

我有这样的布局:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:padding="@dimen/activity_horizontal_margin" >

<LinearLayout
android:id="@+id/header"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />

<EditText
android:id="@+id/editText"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</LinearLayout>

我想要的是当用户输入的文本多于一行时,EditText 换行,自动增加高度并在下一行显示不适合的文本。 EditText 不应水平滚动。

我读了很多与此相关的问题,但没有一个有帮助。目前上面的EditText不换行,可以水平滚动。我在 Android 4.2 和 4.4 上进行了测试。

编辑:添加了完整的布局。

编辑 2:

对不起,这是我的错。我在我的代码中以编程方式更改输入类型:

mEditText.setInputType(mInputTypes.get(question.getType()));

所以在这一行中,我已经覆盖了 xml 中的输入类型。我修改了代码,multiLine 输入类型确实有效。

最佳答案

我删除了所有不必要的属性,只添加了必需的属性 android:maxLines="20",

看起来像这样

    <EditText
android:id="@+id/editText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="textMultiLine"
android:maxLines="20" />

关于android - EditText 自动换行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26205985/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com