通常のアクティビティにGridViewがある場合、正常に動作します。しかし、ここではPopupWindowにそれを入れて、それを機能させるためにあらゆることを試みましたが、 onItemClick は呼び出されません! 私は次のことを試しましたが、ほとんどの人にとっては解決策でしたが、うまくいきませんでした(おそらく私はそれらを誤用しましたか?):
android:clickable="false"
android:focusable="false"
android:focusableInTouchMode="false"
android:descendantFocusability="blocksDescendants"
活動の一部:
bgGrid.setAdapter(new ImageAdapter(context));
bgGrid.setOnItemClickListener(new OnItemClickListener() {
public void onItemClick(AdapterView<?> arg0, View v, int position, long id) {
Log.v("CLICK", "ITEM SELECTED " + position);
}
});
pw = new PopupWindow(layout, posx, posy);
pw.setOutsideTouchable(false);
pw.showAtLocation(layout, Gravity.CENTER, 0, 0); //bgGrid is part of layout
そしてxml:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#444444"
android:orientation="vertical"
android:padding="5dip" >
<GridView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/gridview"
android:layout_width="fill_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:columnWidth="160dp"
android:gravity="center"
android:horizontalSpacing="10dp"
android:numColumns="auto_fit"
android:stretchMode="columnWidth"
android:verticalSpacing="10dp" >
</GridView>
<Button
android:id="@+id/popup_close"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:onClick="closePopup"
android:text="Close" />
</LinearLayout>
イメージアダプター
public class ImageAdapter extends BaseAdapter {
private Context mContext;
public ImageAdapter(Context c) {
mContext = c;
}
public int getCount() {
return mThumbIds.length;
}
public Object getItem(int position) {
return null;
}
public long getItemId(int position) {
return 0;
}
public View getView(int position, View convertView, ViewGroup parent) {
ImageView imageView;
if (convertView == null) { mContext.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
imageView = new ImageView(mContext);
imageView.setLayoutParams(new GridView.LayoutParams(160, 120));
imageView.setScaleType(ImageView.ScaleType.CENTER_CROP);
} else {
imageView = (ImageView) convertView;
}
imageView.setImageResource(mThumbIds[position]);
return imageView;
}
ポップアップ部分全体が PereferenceActivity にあり、Preference のクリックを検出してポップアップを開くリスナーがあります。どうやらリスナーは1つしか存在できず、onClickをPreferenceに設定できないため、これを解決する方法がわかりません(onPreferenceClickはクリックを検出しません)。ポップアップを呼び出す最初のリスナー (そのクリックを取得できる唯一の方法):
images = (Preference) findPreference("prefs_bg");
images.setOnPreferenceClickListener(new BackgroundColorSelector());
クリックは画面に表示されます(drawSelectorOnTopも試しました)が、何があってもクリックが通りません。