How to create android spinner without down triangle on the right side of the widget

后端 未结 8 623
粉色の甜心
粉色の甜心 2020-11-27 04:59

I have a screen where the user has many items to input so screen space is at a premium.

I want the look of the widget on the screen (before the user presses it) t

相关标签:
8条回答
  • 2020-11-27 05:20

    I just arrived to this question, because my spinner was not showing the triangle indicator, now I understand why: I was setting the background to "white":

    android:background="#FFFFFFFF"
    

    This removes the triangle indicator (the spinner background image and padding stated by Aleadam).

    For my problem, I solve it adding a parent LinearLayout just to set the background to "white".

    0 讨论(0)
  • 2020-11-27 05:21

    On related issue of space taken when you actually click on spinner, I found by accident that you can remove those big selection indicators at right. You get a basic list separated by lines but you can click on an item and it still works.

    Set up a spinner like this to get the selection indicators:

        Spinner s1 = (Spinner) findViewById(R.id.spinner1);
        ArrayAdapter<CharSequence> adapter1 = ArrayAdapter.createFromResource(
                this, R.array.petals, android.R.layout.simple_spinner_item);
        adapter1.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
        s1.setAdapter(adapter1);
    

    For no indicators just leave out the setDropDownViewResource line.

    0 讨论(0)
  • 2020-11-27 05:28

    This is quite an old question, but I think still relevant, so here's my answer:

    Simplest Method

    lencinhaus answer is correct. It works, but it can be done in an even simpler way: Just add another background to it. The example below uses the standard Button background for a more homogeneous look-and-feel:

    <Spinner
        android:id="@+id/my_spinner"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:prompt="@string/my_prompt" 
        android:background="@android:drawable/btn_default"
        />       
    

    The syle used in the other answer does not more than applying a background to the widget. That can be done directly to the widget, saving the need for a new xml file. Of course, if you are going to apply a style to the spinner anyways, there's nothing wrong with that approach.

    Why?

    The key to understand how it works lies in the description of the 9-patch PNGs. The lines at the right and at the bottom are used for padding, i.e., to keep some space from being used by its content. In this case, the text inside. The standard Spinner background uses an image with an arrow at the right that is outside of the usable text area. See figure 1 below for an illustration:

    Figure 1. Original Spinner bacground 9-patch PNG http://tinypic.com/images/404.gif
    Figure 1. Original Spinner bacground 9-patch PNG.

    Just removing the arrow is not enough since the padding remains there. You need to use a new 9-patch image with a decreased padding (see figure 2 for an example based on fig. 1) or use one of the precompiled 9-patch images without so much padding, such as the ones for EditText (@android:drawable/edit_text) or Button (@android:drawable/btn_default).


    Figure 2. Modified Spinner bacground 9-patch PNG with reduced padding.

    Understanding this will allow you to create your own backgrounds for the Spinner (and, in fact, for any widget).

    A better explanation of the 9-patch files can be found here

    It's very easy to create the files with the draw9patch executable from the SDK (read about it here), but nothing prevents you to use Photoshop or Gimp instead. Remember, 9-patch PNGs are just plain PNGs! The only caveat is to make sure that you draw only to the outer lines of pixels and that the rest of the pixels are completely transparent. Antialiasing close to the border might yield unexpected results.

    0 讨论(0)
  • 2020-11-27 05:28

    No answer was helpful for me, so here is a really simple one-line solution that worked.

      //some spinner initialisation stuff->
    mySpinner.setAdapter(adapter);
    
      //some spinner initialisation stuff->
    mySpinner.getBackground().setColorFilter(Color.TRANSPARENT, PorterDuff.Mode.CLEAR);
    

    I can't tell for sure if it will work with just a default spinner layout, but it worked well with my custom that I created for other needs.

    0 讨论(0)
  • 2020-11-27 05:30

    Give it a background, the arrow will disappear.

    android:background="@drawable/bg"
    
    0 讨论(0)
  • 2020-11-27 05:38

    One thing you can do is take Spinner's source code from android code base, together with related layouts and resources, and use them to create your own custom widget (probably you will only need to remove the arrow from the layout and tweak the code a little depending on your needs).

    EDIT: You're right, following that post it was actually really simple :) You have to do two things. First, create a styles.xml file under res/values, open it and add the following:

    <?xml version="1.0" encoding="utf-8"?>
    <resources>
        <style parent="@android:style/Widget.Spinner" name="SpinnerAsEditText">
            <item name="android:background">@android:drawable/edit_text</item>
        </style>
    </resources>
    

    Next, in your layout, add the Spinner like this:

    <Spinner style="@style/SpinnerAsEditText" anyOtherAttributeYouNeed="..."></Spinner>
    

    That's it, now the spinner will look like a plain EditText, without that unuseful and annoying down arrow.

    0 讨论(0)
提交回复
热议问题