为什么微调器太大了?

时间:2013-07-19 08:33:02

标签: android android-spinner

我正在开发一个Android应用程序,我在设计布局时遇到了问题:

采用这种布局:

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginLeft="10dp"
        android:layout_marginRight="10dp" >

        <TextView
            android:id="@+id/textUploadPhotos"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="0.4"
            android:text="@string/layout_upload_photos"
            android:textAppearance="?android:attr/textAppearanceMedium" />

        <Spinner
            android:id="@+id/spinUploadPhotos"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="0.7"
            android:background="@drawable/spin_selector" />

    </LinearLayout>

spin_selector.xml

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android" >
    <item android:drawable="@drawable/select" android:state_pressed="true"/>
    <item  android:drawable="@drawable/select" android:state_focused="true"/>
    <item android:drawable="@drawable/select"/>
</selector>

我明白了:

enter image description here

@drawable/select就是这个:

enter image description here

如何将微调器大小设置为@drawable/select高度?

2 个答案:

答案 0 :(得分:2)

使用9个补丁作为微调器的背景。我认为这对你很有意思:http://adanware.blogspot.com/2012/03/android-custom-spinner-with-custom.html

答案 1 :(得分:0)

你的形象似乎是罪魁祸首。如果您不能使用9补丁png,请尝试将微调器的height属性设置为更好的值。也许,现在,您已将其设置为wrap_content。

或者,您可以尝试降低图像本身的高度。