将文本插入到EditText Android中

时间:2015-05-22 12:08:21

标签: java android

我使用EditText将特定文本与editText.setText(string)放在一起,我正在尝试将EditText的高度与我的字符串的行匹配,但我可以'吨。

如果我使用EditText并写正常,则效果很好,但我需要将文本放在setText()

有人能帮助我吗?

example

            <EditText
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:singleLine="false"
                android:id="@+id/text_description"
                android:maxLength="500"
                android:focusableInTouchMode="false"
                android:layout_weight="0" />

1 个答案:

答案 0 :(得分:0)

在您的XML文件中,将android:layout_height属性设置为wrap_content,如下所示:

<EditText
   android:layout_width="match_parent"
   android:layout_height="wrap_content"
   ...../>