2012-11-30 59 views
1

我使用數字選取器從用戶獲取信息,但是當我在XML中調用數字選擇器時,我只能看到EditText,並且按鈕沒有出現。Number Picker problems

<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

您正在使用哪個Android API級別? – VendettaDroid

+0

這裏是關於數字選擇器和解釋的很好的教程。 http://shanetully.com/2011/12/android-3-x-and-4-x-numberpicker-example/ – VendettaDroid

回答

4

嘗試設置最大值和最小值,看看它是否有所不同。

setMaxValue (int maxValue) 
setMinValue (int minValue) 

編輯:我也建議測試一個真正的設備。

+0

感謝您的幫助=) –

+0

它工作正常! –