我正在使用数字选择器从用户那里获取信息,但是当我在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" />
答案 0 :(得分:4)
尝试设置最大值和最小值,看看它是否有所作为。
setMaxValue (int maxValue)
setMinValue (int minValue)
编辑:我还建议在真实设备上进行测试。