Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

If the text of a Spinner item is too long to fit into a single line, the text is not wrapped but cut off. This is only the case for API level >= 11. Here are screenshots of Android 4.2.2 (left) which shows the wrong behavior and Android 2.3.3 (right) where it looks as expected.

android:singleLine="false" simply gets ignored here. So as all other tries like android:lines, android:minLines, etc. The TextView somehow seems to be much wider than the window width.

I saw other people having the same problem, but no one could find a solution. So, is this a system bug? I don't think this inconsistency between the OS versions can be intended.


Please note:

There were some answers suggesting relatively simple solutions.

  • Writing a custom Adapter and overriding getView() as well as getDropDownView(). This is not the solution here, because at this point, there is still the original problem: How does the layout have to look like to handle proper line wrapping?

  • Wrapping the TextView of the drop down view into a parent ViewGroup. Does not work with android:layout_width="match_parent" because the width of the parent strangely seems to be unlimited.

  • Giving the drop down view a fixed width. This is not suitable with the different widths the Spinner can have.

  • And of course, no solution is to manually insert \ns anywhere into the text.


Reproduce with the following code:

UPDATE: I also uploaded this as a sample project on GitHub: Download

/res/values/arrays.xml:

<string-array name="items">
    <item>Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt.</item>
    <item>At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est.</item>
</string-array>

/res/layout/spinner_item.xml:

<TextView xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@android:id/text1"
    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" />

Set Adapter:

spinner.setAdapter(ArrayAdapter.createFromResource(this,
            R.array.items,
            R.layout.spinner_item));
share|improve this question
1  
You have to create custom adapter class that extends base adapter and use getDropDownView() method and set that adapter to spinner, that's it. – PAD Jan 3 at 13:13
1  
Looking at the Android source code, the 2.3.3 version of Spinner (link) displays a simple AlertDialog as its dropdown, whereas the 4.1.1 version (link) displays its own DropdownPopup inner class (a subclass of ListPopupWindow). An investigation of that difference is probably a good starting point for anyone thinking of answering this question. – Xå-k9IdI'-I0llwlg'I - Jan 12 at 20:40
try using layout_weight=1, it might work – Ajay Jan 15 at 8:41
Why don't you report it to android and see what they say about it? – Yekhezkel Yovel Jan 15 at 13:13
I think this is the case only when you use a holo theme. – lokoko Jan 17 at 17:12
show 1 more comment

3 Answers

Achieving multi-line drop-down items on a Spinner while using a Holo theme isn't possible, from what I've tried.

A workaround solution is to:

  • create a style for the Spinner that doesn't inherit from Holo. This will enable multi-line drop-down items.
  • Style the Spinner 'manually' so it looks like it's Holo-themed.

This produces (showing closed and open states):

enter image description here

Details of implementation:

There is no way to inherit from a Holo theme on the Spinner and show multiple lines in the Spinner drop-down item as far as I can tell, even if we set the drop-down item's TextView singleLine attribute to false and supply a custom layout. I've also tried keeping the Holo style but altering the

android:spinnerStyle
android:spinnerItemStyle 
android:spinnerDropDownItemStyle 

styles attributes (example of using these attributes here) but I couldn't make it produce a multi-line result.

However, if we override the style for the Spinner and don't inherit spinnerStyle from Holo:

 <style name="AppTheme" parent="android:Theme.Holo.Light">
    <item name="android:spinnerStyle">@style/spinnerStyle</item>
</style>

<--no parent attribute-->
 <style name="spinnerStyle">
    <item name="android:clickable">true</item>
</style>

then the drop-down item will support showing multiple lines. But now we have lost the Holo theme on the Spinner and the closed state looks like a TextView not a Spinner with no arrow or visual clue it's a Spinner. If we instead set spinnerStyle parent to: parent="android:style/Widget.Spinner:

<style name="spinnerStyle" parent="android:style/Widget.Spinner">
    <item name="android:clickable">true</item>
</style>

the Spinner closed state will show the arrow but will be styled like the grey pre-Holo Spinner which looks out of place in a Holo app.

So, a possible solution is then:

  • Override the theme for spinnerStyle and don't use Holo for parent. This will enable multi-line text in the DropDown items.
  • Change the Spinner background to look like it inherits the Holo theme.

Here's an example:

Create a basic Activity:

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    Spinner spinner = (Spinner)findViewById(R.id.styled_spinner);

    spinner.setAdapter(ArrayAdapter.createFromResource(this,
            R.array.items,
            R.layout.spinner_item));        
}

Activity layout:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:padding="50dip"
    tools:context=".MainActivity" >

    <Spinner
        android:id="@+id/styled_spinner"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"/>

</LinearLayout>

styles:

<resources xmlns:android="http://schemas.android.com/apk/res/android">
    <style name="AppTheme" parent="android:Theme.Holo.Light">
        <item name="android:spinnerStyle">@style/spinnerStyle</item>
    </style>
    <style name="spinnerStyle">
        <item name="android:clickable">true</item>
        <item name="android:background">@drawable/spinner_background_holo_light</item>
    </style>
</resources>

in drawable folder, place spinner_background_holo_light:

<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:state_enabled="false"
        android:drawable="@drawable/spinner_disabled_holo_light" />
    <item android:state_pressed="true"
        android:drawable="@drawable/spinner_pressed_holo_light" />
    <item android:state_pressed="false" android:state_focused="true"
        android:drawable="@drawable/spinner_focused_holo_light" />
    <item android:drawable="@drawable/spinner_default_holo_light" />
</selector>

and include these drawables in your drawables-hdpi folder:

enter image description here spinner_default_holo_light.9.png

enter image description here spinner_disabled_holo_light.9.png

enter image description here spinner_focused_holo_light.9.png

enter image description here spinner_pressed_holo_light.9.png

This produces a spinner with Holo-themed closed state and multi-line items, as shown in the screenshots above.

The drop-down items in this example are not Holo-themed but perhaps it's an acceptable trade-off if multi-line display of the drop down items is really important.

In this example, android:minSdkVersion was set to 14 and android:targetSdkVersion to 17 in Manifest.

Holo graphics and the spinner_background_holo_light.xml code come from HoloEverywhere Copyright (c) 2012 Christophe Versieux, Sergey Shatunov. See linked-to github project for license details.

share|improve this answer
this has been mostly helpful, what exactly is in spinner_item.xml? do I use style="@style/spinnerStyle" in my spinner_item.xml checkedtextview ? Need to ask because when I click on the item nothing happens, it highlights but there is no list of items that comes up – CQM Mar 8 at 20:44
@CQM It's a TextView with width set to fill_parent and height set to wrap_content. – Gunnar Karlsson Mar 8 at 23:23
thanks, where is this set to an object? style="@style/spinnerStyle" – CQM Mar 8 at 23:35
It's applied as style to spinners by including <item name="android:spinnerStyle">@style/spinnerStyle</item> in the app theme ('AppTheme' in above example). – Gunnar Karlsson Mar 8 at 23:58

I think there is a bug on android. You could try this. Remove the spaces from the text and then display it would work fine. If the length of the textview is < that of the string, it ignores all the characters after the space. For a work-around you could try this :

add a file to res/layout folder named multiline_spinner_dropdown_item.xml with the sample code:

<CheckedTextView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/sample_text"
style="?android:attr/spinnerDropDownItemStyle"
android:singleLine="false"
android:layout_width="match_parent"
android:layout_height="?android:attr/listPreferredItemHeight"
android:ellipsize="marquee" />

and when you are creating the spinner create it from this layout.

Something like :

ArrayAdapter.createFromResource(this, items, R.layout.multiline_spinner_dropdown_item);

Basically, copy the android.R.layout.simple_spinner_dropdown_item layout into the project and modify the layout by setting singleLine attribute to false in CheckedTextView.

share|improve this answer

I had this same problem and found a solution.

I wanted the text to wrap in the initial display and in the dropdown view as well.

The text was wrapping in the initial display and for the dropdown I had found another solution recommending the use a custom view of a linear layout with fixed width enclosing a textview. This made the dropdown of the spinner look correct, as well as that of the initial selection. However, this caused a major problem on older devices.

The initial display would not refresh and the text took on a stacked look if I tried to select something else. and since it stacked downward adding a background didn't help. enter image description here

As it turns out adapters have a method called setDropDownViewResource() which allows you to set a different view for the dropdown than what is displayed in the spinner's initial selection.

 import org.holoeverywhere.widget.Spinner;

 ArrayAdapter adapter1 = ArrayAdapter.createFromResource(this,R.array.array_of_strings,R.layout.simple_list_item_1);
 adapter1.setDropDownViewResource(R.layout.my_simple_list_item_1);
 spQ1.setAdapter(adapter1);

in this example the simple_list_item is the default view supplied by android and my_simple_list_item is

<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android" 
android:layout_width="300dp"
android:layout_height="wrap_content" >   

<TextView
  android:id="@+id/android:text1"
  android:layout_width="wrap_content"
  android:layout_height="50dp"
  android:ellipsize="marquee"
  android:layout_gravity="center_vertical"
  android:singleLine="false"/>

</LinearLayout> 

Now the text wraps inside the dropdown view of the spinner AND in the spinners displayed selection.

share|improve this answer
This is only a workaround, not a solution. You set the width to 300dp. Of course, this makes the text wrap. A solution would still use match_parent. Thank you for sharing this anyway! – matthias Apr 17 at 22:16

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.