0

Spinner で android:layout_width="fill_parent" を設定すると、奇妙な問題が発生します。

クリック可能な領域は線 (赤い四角) に縮小され、この線を押すだけでスピナーの要素が表示されます。 ここに画像の説明を入力

android:layout_width="wrap_content" を使用すると、正しい領域が得られます: ここに画像の説明を入力

「fill_parent」を使用して同じことをしたい ここに画像の説明を入力

スピナーの要素は正しく視覚化されています。唯一の問題は、スピナーをクリックすることです。考えられる問題はどれですか?

<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>

4

1 に答える 1

2

Spinner の親の高さを match_parent に設定してみてください。また、そのようなレイアウトが本当に必要ですか? スピナーを FrameLayout に配置する必要はありません。スピナーの重みを 1 に設定して、RelativeLayout を LinearLayout に置き換えてみてください。

于 2013-07-31T08:36:11.710 に答える