Whatever layout I use for my spinner's
setDropDownViewResource()
it always cuts off the text at the right edge.
android:singleLine(false)
doesn't seem to work in the dropdown of Holo spinner's. When I initiate the spinner with old dialog mode
Spinner spinner = new Spinner(this, SPINNER.DIALOG_MODE);
then the text wrapping works fine.
Why does the text not wrap in the Holo spinner dropdown?
Spinner spinner = new Spinner(this, SPINNER.MODE_DROPDOWN);