1

我正在使用数字选择器从用户那里获取信息,但是当我在 XML 中调用数字选择器时,我只能看到 EditText,并且按钮没有出现。

<NumberPicker android:id="@+id/reais_picker"
    android:layout_height="wrap_content"
    android:layout_width="wrap_content"
    android:layout_marginTop="50dp"
    android:layout_marginLeft="40dp"
    android:layout_toRightOf="@id/type_spinner" 
    android:layout_below="@id/valor_text" />
4

1 回答 1

4

尝试设置最大值和最小值,看看是否有区别。

setMaxValue (int maxValue)
setMinValue (int minValue)

编辑:我还建议在真实设备上进行测试。

于 2012-11-30T19:33:48.643 回答