gpt4 book ai didi

java - 无论如何我可以指定 Android 中编辑文本的高度

转载 作者:行者123 更新时间:2023-12-02 04:50:39 26 4
gpt4 key购买 nike

我想知道是否有任何方法可以自定义我正在使用的编辑文本的高度。我希望它类似于这张图片Comment Box

这是我到目前为止的代码;

<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="textMultiLine"
android:ems="10"
android:id="@+id/editText"
android:layout_gravity="center_horizontal"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:background="#ffe7e7e7"
android:layout_marginTop="10dp" />

我还想知道我是否可以通知用户在编辑文本中还剩下多少字符可以写入。就好像 1000 个字符中遗漏了 100 个字符。我怎样才能做到这一点?

最佳答案

您可以定义线条属性

<EditText
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:lines="5"/>

为了保持计数,您可以将 TextWatcher 添加到您的 EditText

引用: How to use the TextWatcher class in Android?

http://developer.android.com/reference/android/text/TextWatcher.html

关于java - 无论如何我可以指定 Android 中编辑文本的高度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29265763/

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