数字选取器问题



我正在使用数字选取器从用户那里获取信息,但是当我在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" />

尝试设置最大值和最小值,看看是否有所作为。

setMaxValue (int maxValue)
setMinValue (int minValue)

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

最新更新