时间:2021-05-02
? 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 private void showPopupView() { if (mPopupWindow == null) { View view = getLayoutInflater().inflate(R.layout.newest_layout, null); mPopupWindow = new PopupWindow(view, LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT); mPopupWindow.setFocusable(true);//需要设置为ture,表示可以聚焦 //需要设置背景,用物理键返回的时候 mPopupWindow.setBackgroundDrawable(new BitmapDrawable(getResources())); mPopupWindow.setOutsideTouchable(true); view.setOnTouchListener(new OnTouchListener()// 需要设置,点击之后取消popupview,即使点击外面,也可以捕获事件 { public boolean onTouch(View v, MotionEvent event) { if (mPopupWindow.isShowing()) { Trace.Log("-------------------onTouch------------"); mPopupWindow.dismiss(); } return false; } }); } if (mPopupWindow.isShowing()) { mPopupWindow.dismiss(); } else { View parent = findViewById(R.id.newest); mPopupWindow.showAsDropDown(parent);// 显示再指定控件的下面 } }
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
Android点击editview以外位置实现隐藏输入法实现代码:@OverridepublicbooleandispatchTouchEvent(Motion
PopupWindow是Android上自定义弹出窗口,使用起来很方便。PopupWindow的构造函数为复制代码代码如下:publicPopupWindow(
Android获取屏幕尺寸实例代码实现代码:/*****使Android程序支持了多种分辨率*/intmWidthScreen,mHeightScreen;Di
此篇博客实现的功能是:点击界面中的图片,跳出一个PopupWindow,PopupWindow中含有相应的文字和图标,并且在显示PopupWindow的时候,背
本文介绍了android的ListView点击item使item展开的做法的实现代码,分享给大家,具体如下:效果图:原理是点击item的时候,重新measure