我使用EditText
将特定文本与editText.setText(string)
放在一起,我正在尝试将EditText
的高度与我的字符串的行匹配,但我可以'吨。
如果我使用EditText
并写正常,则效果很好,但我需要将文本放在setText()
。
有人能帮助我吗?
<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" />
答案 0 :(得分:0)
在您的XML文件中,将android:layout_height
属性设置为wrap_content
,如下所示:
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
...../>