Number Picker is quite not straight forword to modify or customize.
Below is code which will adjust the NumberPicker height to 360dp actual values are considered match parent or wrap content in height will not be considered.
Text color,Text size,divider color can be changed as per style mentioned below
Height and style of number picker:
<NumberPicker
android:id="@+id/np_month"
android:layout_width="wrap_content"
android:layout_height="360dp"
android:theme="@style/AppTheme.Picker" />
Style:
<style name="AppTheme.Picker" parent="Theme.AppCompat.Light.NoActionBar" >
<item name="android:textColorPrimary">@android:color/white</item>
<item name="android:textSize">40sp</item>
<item name="colorControlNormal">@android:color/transparent</item>
</style>