我对 android 很陌生,我想减小EditText
布局中的字段大小。
例如,如果用户只需要在文本字段中输入 3 位数字,那么 的大小EditText
应该足够小,而不是默认提供的大小。
有可能这样做吗?
提前致谢。
我对 android 很陌生,我想减小EditText
布局中的字段大小。
例如,如果用户只需要在文本字段中输入 3 位数字,那么 的大小EditText
应该足够小,而不是默认提供的大小。
有可能这样做吗?
提前致谢。
试试这样。。
android:layout_width="wrap_content"
或者
android:layout_width="20dp" //size your choice
在您的布局文件中,将属性设置为该文本字段宽度为
android:layout_width="wrap_content"
..这将 width
作为文本content entered into the field
你可以使用 android:layout_margin="size you want"
使用也可以使用 android:layout_margin_left="你想要的大小"
而不是“左”,你也可以右、上、下。