i have a Spinner where the text both inside the spinner and the choices when the spinner is expanded (drop down view) can be quite long depending on the locale. i set a custom view for both the spinner view and the drop down view that should allow the text lines to wrap,
<CheckedTextView xmlns:android="http://schemas.android.com/apk/res/android"
style="?android:attr/spinnerDropDownItemStyle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:ellipsize="none"
android:minHeight="?android:attr/listPreferredItemHeight"
android:singleLine="false" />
and in the code,
spinnerPermission = (Spinner) layout.findViewById(R.id.permission_spinner);
ArrayAdapter<CharSequence> permissionAdapter = ArrayAdapter.createFromResource(getActivity(), R.array.add_share_dialog_permissions,
R.layout.multiline_spinner_dropdown_item);
permissionAdapter.setDropDownViewResource(R.layout.multiline_spinner_dropdown_item);
spinnerPermission.setAdapter(permissionAdapter);
this works fine in android 2, but in android 4, the text in the drop down view still won't wrap,

although it's not clear from the image, the text in the spinner view does wrap correctly. i can't tell for sure, but it seems like the container around the drop down views is not constrained by the screen and expands off the screen to the right. that would prevent the text from wrapping, because as far as the TextView is concerned, there's plenty of space.
here is the spinner's popup view in hierarchy viewer,

any ideas? thanks.

layout_widthto an explicit value instead ofmatch_parentfor the dropdown view. – toadzky Nov 14 '12 at 17:27Spinnerin Hierarchy View and see if that tells you anything, such as confirming your "expands off the screen to the right" theory (which sounds plausible). I haven't tried viewing an openSpinnerin Hierarchy View, so while I hope it'll work, it's possible that for some reason that is not possible. – CommonsWare Nov 14 '12 at 17:44