I have a NumberPicker which should represent hours. How can I add the :00 after the number? Or is there another way? Here's the code:
hourPicker.setDescendantFocusability(NumberPicker.FOCUS_BLOCK_DESCENDANTS);
hourPicker.setMinValue(rightNow.get(Calendar.HOUR_OF_DAY) + 2);
hourPicker.setMaxValue(23);
hourPicker.setWrapSelectorWheel(false);
EDIT: