spinner和AlertDialog一起使用 spinner的小三角和AlertDialog的button区重叠

问题截图如下: soinner的小三角和AlertDialog的buttion区域重合了


spinner和AlertDialog一起使用 spinner的小三角和AlertDialog的button区重叠_第1张图片

经过上网搜找的的解决方案 感谢http://stackoverflow.com/questions/29009445/android-spinner-dropdown-arrow-not-displaying

设置spinner的背景来达到目的

解决方案如下:

在drawable目录下新建xml 比如叫shape_normal.xml

xml version="1.0" encoding="utf-8"?>
xmlns:android="http://schemas.android.com/apk/res/android" >
    
                    android:gravity="end"
            android:src="@drawable/spinner_icon" />
    
然后在spinner控件上设置该背景即可

android:id="@+id/mmm"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:textAlignment="viewStart"
        android:background="@drawable/shape_normal"
        android:prompt="@string/llll"
        android:entries="@array/eeeee" />

spinner_icon图片如下



原来的shape_XX.xml如下:

xml version="1.0" encoding="utf-8"?>
xmlns:android="http://schemas.android.com/apk/res/android" >
    
        
            android:color="@android:color/transparent" />

                            android:width="1dp"
                android:color="#6f94c7" />

                            android:bottom="10dp"
                android:left="2dp"
                android:right="10dp"
                android:top="10dp" />
        
    
    
                    android:gravity="end"
            android:src="@drawable/spinner_icon" />
    

还有一个规避方案是设置最小宽度

父控件设置一个最小宽度

android:minWidth="300dp"
在spinner上设置一个最小高度

android:minHeight="40dp"















你可能感兴趣的:(spinner和AlertDialog一起使用 spinner的小三角和AlertDialog的button区重叠)