码迷,mamicode.com
首页 > Windows程序 > 详细

popupwindow

时间:2017-09-22 10:12:23      阅读:266      评论:0      收藏:0      [点我收藏+]

标签:over   position   配置   click   无法   list   tin   outside   bsp   

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical" android:layout_width="match_parent"
    android:layout_height="match_parent">

    <Button
        android:id="@+id/noInterest"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="#f00"
        android:text="不感兴趣"/>
</LinearLayout>
shan3 = (ImageView) convertView.findViewById(R.id.imageshan);
 LayoutInflater inflater = LayoutInflater.from(context);
            // 引入窗口配置文件
            View view = inflater.inflate(R.layout.popupwindow, null);
            // 创建PopupWindow对象
            final PopupWindow pop = new PopupWindow(view, ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT, false);
            // 需要设置一下此参数,点击外边可消失
            pop.setBackgroundDrawable(new BitmapDrawable());
            //设置点击窗口外边窗口消失
            pop.setOutsideTouchable(true);
            // 设置此参数获得焦点,否则无法点击
            pop.setFocusable(true);
            shan3.setOnClickListener(new View.OnClickListener() {
                @Override
                public void onClick(View view) {
                    if(pop.isShowing()) {
                        // 隐藏窗口,如果设置了点击窗口外小时即不需要此方式隐藏
                        pop.dismiss();
                    } else {
                        // 显示窗口
                        pop.showAsDropDown(view);
                    }
                }
            });
            Button btn = (Button) view.findViewById(R.id.noInterest);
            btn.setOnClickListener(new View.OnClickListener() {
                @Override
                public void onClick(View view) {
                    list.remove(position);
                    notifyDataSetChanged();
                }
            });

 

popupwindow

标签:over   position   配置   click   无法   list   tin   outside   bsp   

原文地址:http://www.cnblogs.com/SLXN/p/7572694.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!