popwindow创建以及事件拦截与内部包含checkbox选中

2024-02-24 18:40

本文主要是介绍popwindow创建以及事件拦截与内部包含checkbox选中,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

1:需求一个这样的弹窗覆盖
这里写图片描述
2:界面搭建以及popuwidow弹出动画效果

   private void cate_screen_poppu() {View view = LayoutInflater.from(this).inflate(R.layout.cate_screen_popup, null);final CheckBox checkbox_all = (CheckBox) view.findViewById(R.id.checkbox_all);final   CheckBox checkbox_serial = (CheckBox) view.findViewById(R.id.checkbox_serial);final  CheckBox checkbox_free = (CheckBox) view.findViewById(R.id.checkbox_free);final CheckBox checkbox_vip = (CheckBox) view.findViewById(R.id.checkbox_vip);final RelativeLayout rl_checkbox_serial = (RelativeLayout) view.findViewById(R.id.rl_checkbox_serial);final RelativeLayout rl_checkbox_all = (RelativeLayout) view.findViewById(R.id.rl_checkbox_all);final RelativeLayout rl_checkbox_free = (RelativeLayout) view.findViewById(R.id.rl_checkbox_free);final RelativeLayout rl_checkbox_vip = (RelativeLayout) view.findViewById(R.id.rl_checkbox_vip);boolean all = PrefUtils.getBoolean(UiUtils.getContext(), "checkbox_all", true);if(all){checkbox_all.setChecked(true);}else{checkbox_all.setChecked(false);}boolean serial = PrefUtils.getBoolean(UiUtils.getContext(), "checkbox_serial", true);if(serial){checkbox_serial.setChecked(true);}else{checkbox_serial.setChecked(false);}boolean free = PrefUtils.getBoolean(UiUtils.getContext(), "checkbox_free", true);if(free){checkbox_free.setChecked(true);}else{checkbox_free.setChecked(false);}boolean vip = PrefUtils.getBoolean(UiUtils.getContext(), "checkbox_vip", true);if(vip){checkbox_vip.setChecked(true);}else{checkbox_vip.setChecked(false);}Button ok_button = (Button) view.findViewById(R.id.ok_button);Button resetting_button = (Button) view.findViewById(R.id.resetting_button);WindowManager manger = (WindowManager) getSystemService(CatagaryActivity.WINDOW_SERVICE);@SuppressWarnings("deprecation")int width = manger.getDefaultDisplay().getWidth()/4;int heigh = manger.getDefaultDisplay().getHeight();mWindow = new PopupWindow(view,3*width, heigh-getStatusBarHeight(this));mWindow.setBackgroundDrawable(getResources().getDrawable(android.R.color.transparent));mWindow.setOutsideTouchable(true);mWindow.setTouchable(true);mWindow.setFocusable(true);mWindow.update();View parent = LayoutInflater.from(this).inflate(R.layout.catagary_activity, null);//为popWindow添加动画效果mWindow.setAnimationStyle(R.style.popWindow_animation);// 点击弹出泡泡窗口mWindow.showAtLocation(parent, Gravity.RIGHT, 0,getStatusBarHeight(this));//popupWindow在弹窗的时候背景半透明final WindowManager.LayoutParams params = getWindow().getAttributes();params.alpha = 0.5f;getWindow().setAttributes(params);mWindow.setOnDismissListener(new PopupWindow.OnDismissListener() {@Overridepublic void onDismiss() {params.alpha = 1.0f;getWindow().setAttributes(params);}});//判断是否选中切换书籍筛选状态resetting_button.setOnClickListener(new View.OnClickListener() {@Overridepublic void onClick(View view) {checkbox_all.setChecked(true);checkbox_serial.setChecked(true);checkbox_free.setChecked(true);checkbox_vip.setChecked(true);}});ok_button.setOnClickListener(new View.OnClickListener() {public void onClick(View view) {boolean checkbox_allSelected = checkbox_all.isChecked();Log.e("glk",checkbox_allSelected+"");boolean checkbox_serialSelected = checkbox_serial.isChecked();boolean checkbox_freeSelected = checkbox_free.isChecked();boolean checkbox_vipSelected = checkbox_vip.isChecked();if(checkbox_allSelected&&checkbox_serialSelected&&checkbox_freeSelected&&checkbox_vipSelected){radio_cate_screen_book.setTextColor(Color.BLACK);}else{radio_cate_screen_book.setTextColor(Color.RED);}if((checkbox_allSelected&&checkbox_serialSelected&&checkbox_freeSelected&&checkbox_vipSelected)||(!checkbox_allSelected&&!checkbox_serialSelected&&!checkbox_freeSelected&&!checkbox_vipSelected)){mProcess="";mIsVip="";presenter.getBookCategaryList(mCid, mOrder, mProcess, mIsVip, mPage,"10");mAdapter.notifyDataSetChanged();}else if(checkbox_allSelected&&!checkbox_serialSelected&&checkbox_freeSelected&&checkbox_vipSelected){mProcess="2";mIsVip="";presenter.getBookCategaryList(mCid, mOrder, mProcess, mIsVip, mPage,"10");mAdapter.notifyDataSetChanged();}else if(checkbox_allSelected&&!checkbox_serialSelected&&!checkbox_freeSelected&&checkbox_vipSelected){mProcess="2";mIsVip="0";presenter.getBookCategaryList(mCid, mOrder, mProcess, mIsVip, mPage,"10");mAdapter.notifyDataSetChanged();}else if(checkbox_allSelected&&!checkbox_serialSelected&&checkbox_freeSelected&&!checkbox_vipSelected){mProcess="2";mIsVip="1";presenter.getBookCategaryList(mCid, mOrder, mProcess, mIsVip, mPage,"10");mAdapter.notifyDataSetChanged();}else if(!checkbox_allSelected&&checkbox_serialSelected&&checkbox_freeSelected&&checkbox_vipSelected){mProcess="1";mIsVip="";presenter.getBookCategaryList(mCid, mOrder, mProcess, mIsVip, mPage,"10");mAdapter.notifyDataSetChanged();}else if(!checkbox_allSelected&&checkbox_serialSelected&&!checkbox_freeSelected&&checkbox_vipSelected){mProcess="1";mIsVip="0";presenter.getBookCategaryList(mCid, mOrder, mProcess, mIsVip, mPage,"10");mAdapter.notifyDataSetChanged();}else if(!checkbox_allSelected&&checkbox_serialSelected&&checkbox_freeSelected&&!checkbox_vipSelected){mProcess="1";mIsVip="1";presenter.getBookCategaryList(mCid, mOrder, mProcess, mIsVip, mPage,"10");mAdapter.notifyDataSetChanged();}mWindow.dismiss();}});checkbox_all.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {@Overridepublic void onCheckedChanged(CompoundButton button, boolean b) {checkbox_all.setChecked(b? true:false);PrefUtils.putBoolean(UiUtils.getContext(),"checkbox_all",b);}});checkbox_serial.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {@Overridepublic void onCheckedChanged(CompoundButton button, boolean b) {checkbox_serial.setChecked(b? true:false);PrefUtils.putBoolean(UiUtils.getContext(),"checkbox_serial",b);}});checkbox_free.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {@Overridepublic void onCheckedChanged(CompoundButton button, boolean b) {checkbox_free.setChecked(b? true:false);PrefUtils.putBoolean(UiUtils.getContext(),"checkbox_free",b);}});checkbox_vip.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {@Overridepublic void onCheckedChanged(CompoundButton button, boolean b) {checkbox_vip.setChecked(b? true:false);PrefUtils.putBoolean(UiUtils.getContext(),"checkbox_vip",b);}});rl_checkbox_serial.setOnClickListener(new View.OnClickListener() {@Overridepublic void onClick(View view) {boolean checked = checkbox_serial.isChecked();if(checked){checkbox_serial.setChecked(false);PrefUtils.putBoolean(UiUtils.getContext(),"checkbox_serial",false);}else{checkbox_serial.setChecked(true);PrefUtils.putBoolean(UiUtils.getContext(),"checkbox_serial",true);}Log.e("glk", "ipone7pluss");}});rl_checkbox_all.setOnClickListener(new View.OnClickListener() {@Overridepublic void onClick(View view) {boolean checked = checkbox_all.isChecked();if(checked){checkbox_all.setChecked(false);PrefUtils.putBoolean(UiUtils.getContext(),"checkbox_all",false);}else{checkbox_all.setChecked(true);PrefUtils.putBoolean(UiUtils.getContext(),"checkbox_all",true);}Log.e("glk", "ipone7plusa");}});rl_checkbox_free.setOnClickListener(new View.OnClickListener() {@Overridepublic void onClick(View view) {boolean checked = checkbox_free.isChecked();if(checked){checkbox_free.setChecked(false);PrefUtils.putBoolean(UiUtils.getContext(),"checkbox_free",false);}else{checkbox_free.setChecked(true);PrefUtils.putBoolean(UiUtils.getContext(),"checkbox_free",true);}Log.e("glk", "ipone7plusf");}});rl_checkbox_vip.setOnClickListener(new View.OnClickListener() {@Overridepublic void onClick(View view) {boolean checked = checkbox_vip.isChecked();if(checked){checkbox_vip.setChecked(false);PrefUtils.putBoolean(UiUtils.getContext(),"checkbox_vip",false);}else{checkbox_vip.setChecked(true);PrefUtils.putBoolean(UiUtils.getContext(),"checkbox_vip",true);}Log.e("glk", "ipone7plusv");}});}

3:动画效果

   //为popWindow添加动画效果mWindow.setAnimationStyle(R.style.popWindow_animation);

进出的动画style

 <style name="popWindow_animation"><item name="android:windowEnterAnimation">@anim/popupwindow_enter</item><item name="android:windowExitAnimation">@anim/popupwindow_exit</item></style>

进出的xml文件

这里写图片描述
这里写图片描述
4:我的pop 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="#fff"android:layout_marginLeft="@dimen/dm200"android:orientation="vertical"><TextViewandroid:layout_width="match_parent"android:gravity="left"android:text="都市情感"android:padding="@dimen/dm030"android:textColor="@color/editTextColor"android:background="@drawable/selector_green_textview"android:textSize="@dimen/font_size_large_high"android:layout_height="wrap_content"/><Viewandroid:layout_width="match_parent"android:layout_height="@dimen/dm001"android:background="#d2d2d2"/><TextViewandroid:layout_width="match_parent"android:gravity="left"android:text="书籍状态"android:padding="@dimen/dm040"android:textColor="@color/accountColor"android:background="@drawable/selector_green_textview"android:textSize="@dimen/font_size_large"android:layout_height="wrap_content"/>
<RelativeLayoutandroid:id="@+id/rl_checkbox_serial"android:layout_width="match_parent"android:padding="@dimen/dm020"android:background="@drawable/selector_green_textview"android:layout_height="wrap_content"><TextViewandroid:layout_width="wrap_content"android:text="连载"android:layout_marginLeft="@dimen/dm030"android:layout_centerInParent="true"android:textColor="@color/editTextColor"android:textSize="@dimen/font_size_middle"android:layout_alignParentLeft="true"android:layout_height="wrap_content"/><CheckBoxandroid:id="@+id/checkbox_serial"android:layout_width="wrap_content"android:checked="true"android:layout_alignParentRight="true"android:layout_centerInParent="true"android:button="@drawable/check_box_selector"android:layout_height="wrap_content"/>
</RelativeLayout><RelativeLayoutandroid:id="@+id/rl_checkbox_all"android:layout_width="match_parent"android:padding="@dimen/dm020"android:background="@drawable/selector_green_textview"android:layout_height="wrap_content"><TextViewandroid:layout_width="wrap_content"android:text="完本"android:layout_marginLeft="@dimen/dm030"android:layout_centerInParent="true"android:textColor="@color/editTextColor"android:textSize="@dimen/font_size_middle"android:layout_alignParentLeft="true"android:layout_height="wrap_content"/><CheckBoxandroid:id="@+id/checkbox_all"android:checked="true"android:layout_width="wrap_content"android:layout_alignParentRight="true"android:layout_centerInParent="true"android:button="@drawable/check_box_selector"android:layout_height="wrap_content"/></RelativeLayout><Viewandroid:layout_width="match_parent"android:layout_height="@dimen/dm001"android:background="#d2d2d2"/><TextViewandroid:layout_width="match_parent"android:gravity="left"android:text="收费状态"android:padding="@dimen/dm040"android:textColor="@color/accountColor"android:background="@drawable/selector_green_textview"android:textSize="@dimen/font_size_large"android:layout_height="wrap_content"/><RelativeLayoutandroid:id="@+id/rl_checkbox_free"android:layout_width="match_parent"android:padding="@dimen/dm020"android:background="@drawable/selector_green_textview"android:layout_height="wrap_content"><TextViewandroid:layout_width="wrap_content"android:text="免费"android:layout_marginLeft="@dimen/dm030"android:layout_centerInParent="true"android:textColor="@color/editTextColor"android:textSize="@dimen/font_size_middle"android:layout_alignParentLeft="true"android:layout_height="wrap_content"/><CheckBoxandroid:id="@+id/checkbox_free"android:checked="true"android:layout_width="wrap_content"android:layout_alignParentRight="true"android:layout_centerInParent="true"android:button="@drawable/check_box_selector"android:layout_height="wrap_content"/></RelativeLayout><RelativeLayoutandroid:id="@+id/rl_checkbox_vip"android:layout_width="match_parent"android:padding="@dimen/dm020"android:background="@drawable/selector_green_textview"android:layout_height="wrap_content"><TextViewandroid:layout_width="wrap_content"android:text="VIP"android:layout_marginLeft="@dimen/dm030"android:layout_centerInParent="true"android:textColor="@color/editTextColor"android:textSize="@dimen/font_size_middle"android:layout_alignParentLeft="true"android:layout_height="wrap_content"/><CheckBoxandroid:id="@+id/checkbox_vip"android:checked="true"android:layout_width="wrap_content"android:layout_alignParentRight="true"android:layout_centerInParent="true"android:button="@drawable/check_box_selector"android:layout_height="wrap_content"/></RelativeLayout>
<RelativeLayoutandroid:layout_width="match_parent"android:layout_height="match_parent"><LinearLayoutandroid:layout_alignParentBottom="true"android:layout_width="match_parent"android:orientation="horizontal"android:layout_marginBottom="@dimen/dm010"android:layout_height="wrap_content"><Buttonandroid:id="@+id/resetting_button"android:layout_width="0dp"android:layout_weight="1"android:text="重置"android:background="@color/backgroundDark"android:textColor="@color/colorPrimary"android:layout_height="match_parent"/><Buttonandroid:id="@+id/ok_button"android:layout_width="0dp"android:layout_weight="1"android:text="确定"android:background="@color/colorPrimary"android:layout_height="match_parent"/></LinearLayout>
</RelativeLayout>
</LinearLayout>

5:要想解决点击阴影部分弹窗消失,但是又不能触发弹窗下面的recycleview条目的点击事件加上这样几行
不要设置那个外部触摸的监听,因为无论你返回true 还是false,都会出现状况,要么下方按钮点击没响应要么弹窗消失不了要么。。。。很多种都试试了,真恶心

 mWindow.setOutsideTouchable(true);mWindow.setTouchable(true);mWindow.setFocusable(true);

6:有疑问联系18792586740@163.com
福利地址点进来吧

这篇关于popwindow创建以及事件拦截与内部包含checkbox选中的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/743005

相关文章

禁止平板,iPad长按弹出默认菜单事件

通过监控按下抬起时间差来禁止弹出事件,把以下代码写在要禁止的页面的页面加载事件里面即可     var date;document.addEventListener('touchstart', event => {date = new Date().getTime();});document.addEventListener('touchend', event => {if (new

【Python编程】Linux创建虚拟环境并配置与notebook相连接

1.创建 使用 venv 创建虚拟环境。例如,在当前目录下创建一个名为 myenv 的虚拟环境: python3 -m venv myenv 2.激活 激活虚拟环境使其成为当前终端会话的活动环境。运行: source myenv/bin/activate 3.与notebook连接 在虚拟环境中,使用 pip 安装 Jupyter 和 ipykernel: pip instal

在cscode中通过maven创建java项目

在cscode中创建java项目 可以通过博客完成maven的导入 建立maven项目 使用快捷键 Ctrl + Shift + P 建立一个 Maven 项目 1 Ctrl + Shift + P 打开输入框2 输入 "> java create"3 选择 maven4 选择 No Archetype5 输入 域名6 输入项目名称7 建立一个文件目录存放项目,文件名一般为项目名8 确定

Java 创建图形用户界面(GUI)入门指南(Swing库 JFrame 类)概述

概述 基本概念 Java Swing 的架构 Java Swing 是一个为 Java 设计的 GUI 工具包,是 JAVA 基础类的一部分,基于 Java AWT 构建,提供了一系列轻量级、可定制的图形用户界面(GUI)组件。 与 AWT 相比,Swing 提供了许多比 AWT 更好的屏幕显示元素,更加灵活和可定制,具有更好的跨平台性能。 组件和容器 Java Swing 提供了许多

顺序表之创建,判满,插入,输出

文章目录 🍊自我介绍🍊创建一个空的顺序表,为结构体在堆区分配空间🍊插入数据🍊输出数据🍊判断顺序表是否满了,满了返回值1,否则返回0🍊main函数 你的点赞评论就是对博主最大的鼓励 当然喜欢的小伙伴可以:点赞+关注+评论+收藏(一键四连)哦~ 🍊自我介绍   Hello,大家好,我是小珑也要变强(也是小珑),我是易编程·终身成长社群的一名“创始团队·嘉宾”

Maven创建项目中的groupId, artifactId, 和 version的意思

文章目录 groupIdartifactIdversionname groupId 定义:groupId 是 Maven 项目坐标的第一个部分,它通常表示项目的组织或公司的域名反转写法。例如,如果你为公司 example.com 开发软件,groupId 可能是 com.example。作用:groupId 被用来组织和分组相关的 Maven artifacts,这样可以避免

批处理以当前时间为文件名创建文件

批处理以当前时间为文件名创建文件 批处理创建空文件 有时候,需要创建以当前时间命名的文件,手动输入当然可以,但是有更省心的方法吗? 假设我是 windows 操作系统,打开命令行。 输入以下命令试试: echo %date:~0,4%_%date:~5,2%_%date:~8,2%_%time:~0,2%_%time:~3,2%_%time:~6,2% 输出类似: 2019_06

STM32内部闪存FLASH(内部ROM)、IAP

1 FLASH简介  1 利用程序存储器的剩余空间来保存掉电不丢失的用户数据 2 通过在程序中编程(IAP)实现程序的自我更新 (OTA) 3在线编程(ICP把整个程序都更新掉) 1 系统的Bootloader写死了,只能用串口下载到指定的位置,启动方式也不方便需要配置BOOT引脚触发启动  4 IAP(自己写的Bootloader,实现程序升级) 1 比如蓝牙转串口,

ORACLE 11g 创建数据库时 Enterprise Manager配置失败的解决办法 无法打开OEM的解决办法

在win7 64位系统下安装oracle11g,在使用Database configuration Assistant创建数据库时,在创建到85%的时候报错,错误如下: 解决办法: 在listener.ora中增加对BlueAeri-PC或ip地址的侦听,具体步骤如下: 1.启动Net Manager,在“监听程序”--Listener下添加一个地址,主机名写计

FreeRTOS内部机制学习03(事件组内部机制)

文章目录 事件组使用的场景事件组的核心以及Set事件API做的事情事件组的特殊之处事件组为什么不关闭中断xEventGroupSetBitsFromISR内部是怎么做的? 事件组使用的场景 学校组织秋游,组长在等待: 张三:我到了 李四:我到了 王五:我到了 组长说:好,大家都到齐了,出发! 秋游回来第二天就要提交一篇心得报告,组长在焦急等待:张三、李四、王五谁先写好就交谁的