0

我有这个 XML:

<EditText
    android:id="@+id/textchat"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    android:layout_alignParentLeft="true"
    android:ems="10"
    android:inputType="textMultiLine" />

但是,当我开始在上面写字时,它会在几个字符后停止。我想完全取消字符限制。有人知道怎么做吗?谢谢。

编辑:完整的 XML

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".ChatActivity" >

<ImageView
    android:id="@+id/imageView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:layout_alignParentTop="true"
    android:src="@drawable/logotipo_high_density_vinceri_movil" />

<ImageView
    android:id="@+id/imageView2"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentTop="true"
    android:layout_toRightOf="@+id/imageView1"
    android:src="@drawable/home_high_density_vinceri_movil" />

<ImageView
    android:id="@+id/imageView3"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentTop="true"
    android:layout_toRightOf="@+id/imageView2"
    android:src="@drawable/alertas_high_density_vinceri_movil" />

<ListView
    android:id="@+id/android:list"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_above="@+id/textchat"
    android:layout_alignParentLeft="true"
    android:layout_below="@+id/imageView1"
    android:background="@drawable/fondo_chat_cuerpo_high_density_vinceri_movil"
    android:divider="@null"
    android:stackFromBottom="true"
    android:transcriptMode="normal" 
    >

</ListView>

<EditText
    android:id="@+id/textchat"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    android:layout_alignParentLeft="true"
    android:ems="10"
    android:inputType="textMultiLine"
    android:maxLength="1000"/>

<Button
    android:id="@+id/chatbutton"
    android:layout_width="wrap_content"
    android:layout_height="40dp"
    android:layout_alignParentBottom="true"
    android:layout_alignParentRight="true"
    android:layout_toRightOf="@+id/textchat"
    android:background="@drawable/chat_btn_enviar_high_density_vinceri_movil" />

</RelativeLayout>
4

5 回答 5

6

以下是为我做的:

android:layout_height="wrap_content"
android:inputType="textMultiLine"
android:singleLine="false"

此外,当您在代码中设置它时,请确保 InputType.TYPE_TEXT_FLAG_MULTI_LINE 位也已设置:

editText1.setInputType(InputType.TYPE_TEXT_FLAG_MULTI_LINE | InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_FLAG_CAP_SENTENCES);
于 2015-05-19T19:30:12.383 回答
2

您是否在编辑文本字段中输入实际句子?我发现单词有 64 个字符的限制。因此,如果您只是在没有空格的情况下输入随机字符,看起来好像您已经达到了 EditText 的字符数限制,但实际上您只是达到了一个单词的字符数限制。

于 2013-12-04T19:42:34.863 回答
0

尝试这个:

    <EditText
    android:id="@+id/textchat"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:maxLength="100"
    android:ems="10" >

在这里设置你想要的 maxLength 限制android:maxLength

于 2013-03-26T10:09:48.757 回答
0

尝试

<EditText
    android:id="@+id/textchat"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    android:layout_alignParentLeft="true"
    android:ems="10"
    android:inputType="textMultiLine"
android:maxLength="1000" /> <!-- Practically not possible for a user to enter 1000 words -->

但是您提供的代码应该可以工作,您的代码对我有用。

于 2013-03-26T10:25:14.727 回答
0

正如david m lee它所建议的那样:

android:inputType="textMultiLine"
于 2017-11-15T09:55:08.157 回答