android – 如何使EditText小于默认值?

前端之家收集整理的这篇文章主要介绍了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://schemas.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

原文链接:https://www.f2er.com/android/313469.html

猜你在找的Android相关文章