android.widget.NumberPicker を使用しようとしていますが、範囲を 0 ~ 5 に制限しています。ただし、これによりアプリケーションがロックされるようです。最初は上/下ボタンは使用できず、ボックスを強調表示すると表示されますが、それを数回押すとアプリケーションが応答しなくなります。
final NumberPicker numerOnePicker = (NumberPicker) findViewById(R.id.numericOnePicker);
numerOnePicker.setMinValue(0);
numerOnePicker.setMaxValue(4);
XML は次のとおりです。
<LinearLayout android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_gravity="center_horizontal"
android:orientation="horizontal"
android:paddingTop="20dp">
<NumberPicker
android:id="@+id/numericOnePicker"
android:layout_width="55dp"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:orientation="vertical"/>