如何使EditText小于默认值?

问题描述 投票:6回答:4

我需要在屏幕上显示大量的EditText控件,每个控件只允许输入0-2位数。默认的EditText大小太宽,我无法在屏幕上显示足够的EditText控件,但我一直无法弄清楚如何使它们更窄。我已经尝试了以下属性

XML:

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

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

android android-layout android-xml
4个回答
10
投票

尝试这种方式,显示差异。使用具有指定宽度的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


4
投票

嘿,一旦你尝试这个,它可能会工作....... android:textAppearance =“?android:attr / textAppearanceSmall”


1
投票

如果你最终在这个页面上搜索如何在Java代码中实现相同的..

txtSample.setFilters(new InputFilter[]{new InputFilter.LengthFilter(2)});

1
投票

在表格中,如您所述,android:layout_gravity =“left”会将EditText折叠为EditText的规定大小

© www.soinside.com 2019 - 2024. All rights reserved.