i tried a lot to change the dropdown item height of spinner.. but i couldn\'t get a good solution.. plz help me guys..
here is a code loginactivityview.xml
As people say, best way is to add
android:minHeight="48dp"
to .xml. But if you want to do it programatically use:
mspinner.setMinimumHeight(48);
being mspinner the name of your spinner and 48 the new height of the option.