如何将编辑文本的默认高度更改为小?

发布于 2024-12-25 03:30:31 字数 297 浏览 1 评论 0原文

我在我的应用程序中使用 Edittext,但想调整它的大小,请告诉我该怎么做?

    <EditText android:layout_width="200dip"
              android:layout_height="wrap_content"
              android:singleLine="true"/>

这是我的活动之一,我想调整所有编辑文本的大小

I am using Edittext in my application but want to resize it please tell me how to do it?

    <EditText android:layout_width="200dip"
              android:layout_height="wrap_content"
              android:singleLine="true"/>

This is one of my actitivity i want to resize my all edit text

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

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

发布评论

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

评论(2

臻嫒无言 2025-01-01 03:30:31

要获得较小的编辑文本,请在android:layout_width中使用较小的dip值

android:layout_width="200dip"   EditText with bigger width
android:layout_width="150dip"   EditText with smaller width than above
android:layout_width="100dip"   EditText with smaller width than above
android:layout_width="50dip"   EditText with smaller width than above
...
..
android:layout_width="0dip"   EditText with width 0 you cant see this edittext

将EditText宽度设置为您想要设置的适当大小

To get smaller edittext use smaller dip values in android:layout_width

android:layout_width="200dip"   EditText with bigger width
android:layout_width="150dip"   EditText with smaller width than above
android:layout_width="100dip"   EditText with smaller width than above
android:layout_width="50dip"   EditText with smaller width than above
...
..
android:layout_width="0dip"   EditText with width 0 you cant see this edittext

set the EditText width to appropriate size which you want to set

七禾 2025-01-01 03:30:31
<EditText
    android:layout_width="20dp"
    android:layout_height="20dp"/>

将“20”替换为您想要的尺寸。数字越大=越大

<EditText
    android:layout_width="20dp"
    android:layout_height="20dp"/>

Replace "20" with the size you want. Higher number = bigger

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