Spinner graphical bug API 21

天涯浪子 提交于 2019-11-28 04:01:38

问题


I have one spinner in a fragment that have a very annoying graphical glitch. This occurs only on my Nexus 5 with API 21.

I have try to set spinner.setLayerType(View.LAYER_TYPE_SOFTWARE, null) but the glitch is still present. Any ideas?


回答1:


I managed to work around this bug in two different ways:

  1. Set a style to your spinner:

    <Spinner
        android:background="@drawable/background"
        android:id="@+id/spinner"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        style="@android:style/Widget.Holo.Light.Spinner"/>
    

maybe the background color in the predefined styles is enough for you. If not try

  1. Create a shape drawable with a corner radius:

    <?xml version="1.0" encoding="utf-8"?>
    <shape xmlns:android="http://schemas.android.com/apk/res/android"
        android:shape="rectangle">
        <corners android:radius="2dp" />
        <solid android:color="#00ff00" />
    </shape>
    

and set it as a popupBackground to your spinner

    <Spinner
        android:background="@drawable/spinner_background"
        android:id="@+id/date_spinner"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:clickable="false"
        android:popupBackground="@drawable/spinner_popup_background"/>

hope this is helpful!



来源:https://stackoverflow.com/questions/28013120/spinner-graphical-bug-api-21

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!