You can use Datepicker like mentioned in this thread to achieve your wanted look.
Another solution that I can offer if you want to change the names inside the dialog is to use custom number picker like this:
You need to add NumberPicker into your XML:
<NumberPicker
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
Create an array with your values(this will go to the number picker)
String mValues[] = { "100 ", "200" };
Now use this method to create number picker with custom values:
private void setNubmerPicker(NumberPicker nubmerPicker,String [] numbers ){
nubmerPicker.setMaxValue(numbers.length-1);
nubmerPicker.setMinValue(0);
nubmerPicker.setWrapSelectorWheel(true);
nubmerPicker.setDisplayedValues(numbers);
}
And for the final step call this method:
setNubmerPicker(yourNumberPicker,mValues);