点击每一个条目的图片都可以弹出PopupWindow

1.布局文件

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"

    android:layout_width="300dp"

    android:layout_height="50dp"

    android:orientation="horizontal"

    android:gravity="center"

    android:background="#c2c2c2">

    <ImageView

        android:layout_width="20dp"

        android:layout_height="20dp"

        android:background="@mipmap/listpage_more_speak_pressed_night"/>

<TextView

    android:layout_width="wrap_content"

    android:layout_height="wrap_content"

    android:text="读文章"

    android:textColor="#fff"

    android:layout_marginLeft="10dp"/>

    <ImageView

        android:layout_width="20dp"

        android:layout_height="20dp"

        android:layout_marginLeft="10dp"

        android:background="@mipmap/listpage_more_like_pressed_night"/>

    <TextView

        android:layout_width="wrap_content"

        android:layout_height="wrap_content"

        android:text="收藏"

        android:textColor="#fff"

        android:layout_marginLeft="10dp"/>

    <ImageView

        android:layout_width="20dp"

        android:layout_height="20dp"

        android:layout_marginLeft="10dp"

        android:background="@mipmap/listpage_more_dislike_pressed_night"/>

    <TextView

        android:id="@+id/bgx"

        android:layout_width="wrap_content"

        android:layout_height="wrap_content"

        android:text="不感兴趣"

        android:textColor="#fff"

        android:layout_marginLeft="10dp"/>

    <ImageView

        android:id="@+id/dis"

        android:layout_width="20dp"

        android:layout_height="20dp"

        android:layout_marginLeft="10dp"

        android:background="@mipmap/abc_ic_clear_search_api_holo_light"/>

</LinearLayout>


2.在每个适配器的viewHolder找到点击弹出PopupWindow的按钮,进行监听

 private  PopupWindow pop

//找到PopupWindow弹框的布局

 View view = View.inflate(context,R.layout.pwo_layout,null);

      //获取弹框的控件

        ImageView dis = (ImageView) view.findViewById(R.id.dis);
        TextView bgx = (TextView) view.findViewById(R.id.bgx);
       //PopupWindow弹框消失
        dis.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {

               Toast.makeText(context, "您点击了消失", Toast.LENGTH_SHORT).show();

                pop.dismiss();
            }
        });

        pop = new PopupWindow();
        // 设置可以获得焦点
        pop.setFocusable(true);
        // 设置弹窗内可点击
        pop.setTouchable(true);
        pop.setBackgroundDrawable(new BitmapDrawable());
        // 设置弹窗外可点击
        pop.setOutsideTouchable(true);
        pop.setWidth(300);
        pop.setHeight(50);
        pop.setContentView(view);

        //进行PopupWindow弹框
        viewHolder.image.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {

                index =position;

                pop.showAsDropDown(viewHolder.image);
            }
        });
        //点击不敢兴趣进行删除此条目

        bgx.setOnClickListener(new View.OnClickListener() {

            @Override
            public void onClick(View v) {
                Toast.makeText(context, "您点击了不感兴趣", Toast.LENGTH_SHORT).show();

                list.remove(list.get(index));

                pop.dismiss();

                notifyDataSetChanged();
            }
        });

3.如图所示



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值