当我使用FILL_PARENT(或MATCH_PARENT)作为WIDTH时,Slim Spinner

时间:2013-07-31 08:22:58

标签: android onclick spinner

当我在我的Spinner中设置android:layout_width =“fill_parent”时,我遇到了一个奇怪的问题:

可点击区域缩小为一条线(红色方块),只有按下这一行才有可能显示Spinner的元素: enter image description here

如果我使用android:layout_width =“wrap_content”我获得了正确的区域: enter image description here

我想用“fill_parent”做同样的事情 enter image description here

Spinner的元素可以正确显示..唯一的问题是点击Spinner。 哪个可能有问题?

<LinearLayout 
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="#040404"
    android:gravity="center"
    android:paddingTop="2dp"
    android:weightSum="4" >

    <TextView
        android:id="@+id/mpp_movimento_lbl"
        android:background="@drawable/selector_black_btn"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:drawableTop="@drawable/freccia_verde"
        android:gravity="center"
        android:text="@string/Movimento"
        android:textColor="@color/white"
        android:textStyle="bold"
        android:textSize="17sp" />

    <TextView
        android:id="@+id/mpp_eccesso_lbl"
        android:background="@drawable/selector_black_btn"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:drawableTop="@drawable/freccia_rossa"
        android:gravity="center"
        android:text="@string/Eccesso"
        android:textColor="@color/white"
        android:textStyle="bold"
        android:textSize="17sp" />

    <TextView
        android:id="@+id/mpp_fermo_lbl"
        android:background="@drawable/selector_black_btn"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:drawableTop="@drawable/freccia_grigia"
        android:gravity="center"
        android:text="@string/Fermo"
        android:textColor="@color/white"
        android:textStyle="bold"
        android:textSize="17sp" />

    <TextView
        android:id="@+id/mpp_ripristina_lbl"
        android:background="@drawable/selector_black_btn"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:drawableTop="@drawable/ripristina_mappa_40x40"
        android:gravity="center"
        android:text="@string/Ripristina"
        android:textColor="@color/white"
        android:textStyle="bold"
        android:textSize="17sp" />

</LinearLayout>

<TextView
    android:id="@+id/mpp_automezzi_visualizzati_lbl"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@color/black"
    android:gravity="center"
    android:paddingTop="5dp"
    android:text="@string/AutomezziVisualizzati"
    android:textColor="@color/white"
    android:textSize="17sp" />

<RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@color/white"
    android:paddingTop="5dp" >

    <FrameLayout
        android:id="@+id/mpp_spinner_frame_fly"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_toLeftOf="@+id/mpp_cerca_btn" >

        <Spinner
            android:id="@+id/mpp_spinner_spn"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_gravity="right"
            android:textSize="17sp" />

    </FrameLayout>

    <ImageButton
        android:id="@+id/mpp_cerca_btn"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:layout_centerVertical="true"
        android:layout_marginLeft="5dp"
        android:background="@drawable/selector_white_btn"
        android:contentDescription="@string/DescrizioneCerca"
        android:gravity="center"
        android:onClick="doCerca"
        android:src="@drawable/cerca" />
</RelativeLayout>

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="5dp"
    android:background="#040404"
    android:gravity="center" >
</LinearLayout>

<RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

    <fragment
        android:id="@+id/mpp_mappa_fragment"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_alignParentBottom="true"
        android:layout_alignParentRight="true"
        android:layout_alignParentTop="true"
        class="com.google.android.gms.maps.SupportMapFragment" />

</RelativeLayout>

1 个答案:

答案 0 :(得分:2)

尝试将Spinner的父级高度设置为match_parent。而且你真的需要这样的布局吗?无需在FrameLayout中放置微调器,尝试将微调器的重量设置为1并将RelativeLayout替换为LinearLayout