Android   发布时间:2022-04-28  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了android – 如何使EditText小于默认值?大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
我需要在屏幕上显示大量的EditText控件,每个控件只允许输入0-2位数.认的EditText大小太宽,我无法在屏幕上显示足够的EditText控件,但我一直无法弄清楚如何使它们更窄.我已经尝试了以下属性

XML

android:maxLength="2"
android:layout_width="20dip"
android:maxWidth="20px"
android:ems="2"
android:maxEms="2"

所以问题是:如何使EditText小于认值?

解决方法

尝试这种方式,显示差异.使用具有指定宽度的layout_width.
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://scheR_642_11845@as.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    >

<EditText
    android:width="10dip"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@String/Hello"
    />

<EditText
    android:layout_width="40dip"
    android:layout_height="wrap_content"
    android:text="@String/Hello"
    android:maxLength="2"
    />

</LinearLayout>

alt text http://i40.tinypic.com/2953fao.jpg

大佬总结

以上是大佬教程为你收集整理的android – 如何使EditText小于默认值?全部内容,希望文章能够帮你解决android – 如何使EditText小于默认值?所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。