3

ポップアップウィンドウに表示するgridViewがあります(gridviewは、linearlayoutから継承され、部分的に透明な背景を持つ透明なレイアウトになっています)。このGridViewのOnItemClickを実行することはできません。グリッドビューで画像をタッチすると、クリックされたように見えますが(画像のバッハグラウンドが変化します)、OnItemClickが呼び出されていません。

以下は、私のアダプターと、gridViewを含む私のポップアップビューのコードです。ありがとう!

//Adapter

public class ImageAdapter extends BaseAdapter {private Context mContext; private int itemBackground;

public ImageAdapter(Context c) {
    mContext = c;

  //---setting the style---
    TypedArray a = c.obtainStyledAttributes(R.styleable.Gallery1);
    itemBackground = a.getResourceId(R.styleable.Gallery1_android_galleryItemBackground, 0);
    a.recycle();
}

...。

public View getView(int position, View convertView, ViewGroup parent) {
    ImageView imageView;
    if (convertView == null) {
        imageView = new ImageView(mContext);
    } else {
        imageView = (ImageView) convertView;
    }
    imageView.setImageResource(images[position]);
    imageView.setScaleType(ImageView.ScaleType.CENTER_INSIDE);
    imageView.setBackgroundResource(itemBackground);
    return imageView;

}
public Integer[] images = {
        R.drawable.sound1,
        R.drawable.sound2,
        R.drawable.sound3,
        R.drawable.sound4
};

}

//////////In Activity, onCreate////////

...

final LayoutInflater inflater=(LayoutInflater)this.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
    final TransparentLayout musicGrid = (TransparentLayout) inflater.inflate(R.layout.gridviewpopup, null, false);
    final GridView gView = (GridView) musicGrid.findViewById(R.id.music_gridview);
    gView.setAdapter(new ImageAdapter(this));

    final PopupWindow soundSelectorWindow = new PopupWindow(this);
    soundSelectorWindow.setContentView(musicGrid);
    soundSelectorWindow.setTouchable(true);

    gView.setOnItemClickListener(new OnItemClickListener() 
    {
        public void onItemClick(AdapterView<?> parent, View v, int position, long id) 
        {   
            //NEVER GETS HERE
            soundSelectorWindow.dismiss();

        }
    }); 
4

3 に答える 3

3

削除するとどうなりますか soundSelectorWindow.setTouchable(true);

于 2010-01-21T06:28:51.283 に答える
3

OnItemClickListenerが機能しない理由を説明することはできませんが、OnTouchListenerに置き換えたときに機能しました。クリックされたアイテムを区別する必要がありますか、それともポップアップがクリックされたことを知るだけで十分ですか?コードからは後者のように見えるので、OnTouchは機能するはずです。

    popup.setTouchable(true);
    popup.setFocusable(true);
    gView.setClickable(true);

    gView.setOnTouchListener(new View.OnTouchListener() 
    {
        public boolean onTouch(View v, MotionEvent event) 
        {   
            popup.dismiss();
            return true;
        }
    }); 
于 2010-01-21T13:57:49.477 に答える
1

エミュレータのVMサイズをチェックして、VMでアプリを実行するのに十分なサイズになるようにします。
のサイズを確認してください<ApplicationName.apk>。エミュレーターがアプリの実行で問題を見つけないように、最小サイズにしてください。

于 2011-10-19T18:18:51.803 に答える