public void onListItemClick(ListView parent, View v, int position, long id)
{
super.onListItemClick(parent, v, position, id);
LayoutInflater inflater = (LayoutInflater)
this.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
final PopupWindow pw = new PopupWindow(
inflater.inflate(R.layout.offer_popup, null, false),
500,
600,
true);
pw.showAtLocation(this.findViewById(android.R.id.list), Gravity.CENTER, 0, 0);
ImageView closeimage=(ImageView) findViewById(R.id.imageView2);
closeimage.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
pw.dismiss();
}
});
offer_popup.xmlは、画像をクリックしてください
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:theme="@android:style/Theme.Dialog"
android:orientation="vertical" android:weightSum="1">
<RelativeLayout android:layout_width="fill_parent"
android:id="@+id/relativeLayout_popup"
android:layout_height="wrap_content" android:layout_weight="0.65">
<ImageView android:layout_width="wrap_content"
android:src="@drawable/node_largeview_black"
android:layout_height="wrap_content"
android:id="@+id/imageView1"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_marginTop="61dp"></ImageView>
<ImageView android:id="@+id/imageView2"
android:layout_height="wrap_content"
android:src="@drawable/close_button"
android:layout_width="wrap_content"
android:layout_alignTop="@+id/imageView1"
android:layout_alignRight="@+id/imageView1"></ImageView>
</RelativeLayout>
</LinearLayout>
は私がリストビューを持っている場合、ポップアップを閉じ、そして私は、アイテム行の1をクリックした場合、ポップアップは、この内、offer_popup.xmlを使用して、作成しますxmlには、closeViewであるimageView2 idがあります。これをクリックすると、ポップアップが閉じられます。
ただし、プログラムがcloseimage = nullをクラッシュしました。
[OK]を、今、それはしかし、クラッシュしていなかった、私はcloseimageをクリックし、ポップアップのイメージは閉じられませんでした。 – lilzz