android 帮助编辑文本

发布于 2024-11-06 12:48:54 字数 365 浏览 1 评论 0原文

大家好,我在 android 编辑文本时遇到了一个小问题 实际上我制作了一个应用程序,其中我使用两个文本字段作为用户名和密码,并手动设置 EditText 大小,如 200dip 格式。现在,当编辑文本中没有文本时,它的大小是完美的,如下图所示,但是当我们开始输入文本并且文本超过 editText 字段的大小时,它会向下展开,如下图所示。 编辑文本之前 EditText After in Expanded shape

我想要的是,当文本超过 EditText 的大小时,它不应该更改其大小。请帮忙

hi all i have a lil problem in android edit text
actually i made an app in which i m using two text fields for user name and password and set EditText size manually like in 200dip format. now when there is no text in the Edit Text it is in perfect size like in the image below but when we start typing text and the text exceeds the size of editText Field then it Expand downwards like in second image below.
EditText Before
EditText After in Expanded shape

What I want is that when text exceeds the size of EditText, it should not Change its size. please help

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

晨曦÷微暖 2024-11-13 12:48:54

android:singleLine="true" 应该可以工作。

android:singleLine="true" should work.

挽梦忆笙歌 2024-11-13 12:48:54

为 EditText 添加此属性并检查...

android:singleLine="true"

add this property for EditText and check...

android:singleLine="true"
转瞬即逝 2024-11-13 12:48:54

您必须将 ExitText 设置为单行。您可以使用 android:singleLine 但它已被弃用并且它被替换为 android:inputType。使用 android:inputType=text 表示单行,< a href="http://developer.android.com/reference/android/widget/TextView.html#attr_android%3ainputType" rel="nofollow">android:inputType=textMultiline 表示多行

You have to do your ExitText to be single line. You can use android:singleLine but it is deprecated and it's replaced by android:inputType. Use android:inputType=text for single line and android:inputType=textMultiline for multiline

橘香 2024-11-13 12:48:54
android:maxLines="1"

另一处房产...

android:maxLines="1"

Another property...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文