2

次のコードを使用して、グリッドビュー アイテム セルのクリックをキャッチします。それはうまくいきます。

grid_main.setAdapter(new ImageAdapter(this));
grid_main.setOnItemClickListener(new OnItemClickListener() { 
    public void onItemClick(AdapterView<?> parent, View v, int position, long id) {
    }
});

次に、gridview セル内に Spinner オブジェクトを追加しました。これで、Spinner オブジェクトをクリックできますが、含まれている gridview セルはクリックに応答しなくなりました。Spinner リスナーが gridview リスナーを置き換えていると想定しています。gridview リスナーとスピナー リスナーの両方が単独で正常に動作しますが、一緒にすると問題が発生します。両方をクリックできるようにする必要があります。以下はスピナーコードです:

final Spinner spinner = (Spinner) v.findViewById(R.id.driver_list);
ArrayAdapter<String> adapter = new ArrayAdapter<String>(DispatchMonitorCalls.this,
android.R.layout.simple_spinner_item, driverlist_name);
adapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
spinner.setAdapter(adapter);

spinner.setOnItemSelectedListener(new OnItemSelectedListener() { 
    public void onItemSelected(AdapterView<?> arg0, View arg1,
    int arg2, long arg3) {
    }
@Override
public void onNothingSelected(AdapterView<?> arg0) {
    // TODO Auto-generated method stub
} 
});

以下は、レイアウト xml です。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/driverrow"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:layout_gravity="left"
    android:gravity="left" >

    <TextView
        android:id="@+id/row_locationtype"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_marginLeft="10dip"
        android:layout_alignParentTop="true"        
        android:text="Empty"
        android:textAppearance="?android:attr/textAppearanceMedium" />

    <TextView
        android:id="@+id/row_timestamp"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignLeft="@+id/row_locationtype"        
        android:layout_below="@+id/row_locationtype"
        android:text="Empty"
        android:textAppearance="?android:attr/textAppearanceSmall" />

    <TextView
        android:id="@+id/row_status"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignLeft="@+id/row_locationtype"        
        android:layout_below="@+id/row_timestamp"
        android:text="Empty"
        android:textAppearance="?android:attr/textAppearanceSmall"
        android:textColor="#ff8080" />

    <Spinner
        android:id="@+id/driver_list"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignLeft="@+id/row_locationtype"        
        android:layout_below="@+id/row_status"
        android:paddingBottom="20dp" />

</RelativeLayout>

前もって感謝します。

4

1 に答える 1

1

スピナーはクリック可能であり、ビューのフォーカスを盗み、「クリックイベント」が飛ばされるため、相対的なレイアウトで「blocksDecendants」を呼び出す必要があります

これを試して :

 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/driverrow"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:layout_gravity="left"
    android:descendantFocusability="blocksDescendants" //<-- add this line, and your click event will be responded 

android:gravity="left" >

<TextView
    android:id="@+id/row_locationtype"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:layout_marginLeft="10dip"
    android:layout_alignParentTop="true"        
    android:text="Empty"
    android:textAppearance="?android:attr/textAppearanceMedium" />

<TextView
    android:id="@+id/row_timestamp"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignLeft="@+id/row_locationtype"        
    android:layout_below="@+id/row_locationtype"
    android:text="Empty"
    android:textAppearance="?android:attr/textAppearanceSmall" />

<TextView
    android:id="@+id/row_status"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignLeft="@+id/row_locationtype"        
    android:layout_below="@+id/row_timestamp"
    android:text="Empty"
    android:textAppearance="?android:attr/textAppearanceSmall"
    android:textColor="#ff8080" />

<Spinner
    android:id="@+id/driver_list"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignLeft="@+id/row_locationtype"        
    android:layout_below="@+id/row_status"
    android:paddingBottom="20dp" />

于 2013-06-23T18:40:50.620 に答える