Android - 当背景是imageview时,不显示微调器箭头

时间:2017-07-19 20:51:54

标签: android android-layout android-imageview android-spinner android-xml

我有一个简单的布局,我使用Imageview作为背景,因为我想使用属性“scaleType”。我首先在我的相对布局中放置了Imageview,然后将Spinner放在后面。

旋转箭头未显示。如果我正在移除Imageview或将我的图像作为背景图像(在相对布局中),它将显示。

这是我的布局:

UINavigationController

1 个答案:

答案 0 :(得分:0)

添加:

android:background="@android:drawable/btn_dropdown"

布局中的Spinner

 <Spinner
        android:id="@+id/spinnerGameType"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:spinnerMode="dropdown"
        android:background="@android:drawable/btn_dropdown"
        android:theme="@style/ThemeOverlay.AppCompat.Light" />

选项2:

使用自定义drawable和自定义箭头向下图像作为微调器

在drawable / custom_spinner.xml

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

            <stroke
                android:width="0dp"
                android:color="#6f94c7" />

            <padding
                android:bottom="10dp"
                android:left="2dp"
                android:right="10dp"
                android:top="10dp" />
        </shape>
    </item>
    <item>
        <bitmap
            android:gravity="end"
            android:src="@drawable/arrow_down" />  //your image
    </item>
</layer-list>

现在在xml中添加:用于微调器

android:background="@drawable/custom_spinner"