createawindowmanger,whichcanreceivekeyevents,anddonotpreventtheevents.publicclassMainActivityextendsAppCompatActivity{privateWindowManagermWindowManager;privateWindowManager.LayoutParamsmLParams;privateImageViewmPopupView;@OverrideprotectedvoidonCreate(Bund..
方法一: public static int SCREEN_WIDTH; public static int SCREEN_HEIGHT; //获取屏幕 WindowManager wm = (WindowManager) getBaseContext().getSystemService( Con ...
分类:
移动开发 时间:
2016-09-20 16:28:35
阅读次数:
347
今天给大家分享下自己用悬浮按钮点击实现翻页效果的例子。 首先,一个按钮要实现悬浮,就要用到系统顶级窗口相关的WindowManager,WindowManager.LayoutParams。那么在AndroidManifest.xml中添加权限: ? 1 <uses-permission andro ...
分类:
移动开发 时间:
2016-09-03 09:45:58
阅读次数:
279
??Android WindowManager悬浮窗:不需要申请权限实现悬浮附录文章1介绍了Android平台上的悬浮窗WindowManager,WindowManager悬浮窗可以悬浮在Andro...
分类:
移动开发 时间:
2016-08-27 10:01:43
阅读次数:
246
Activity的窗口大小,其本质还是通过windowManager来操作,WindowManger将其作为一个window来控制大小 WindowManager m = getWindowManager(); Display d = m.getDefaultDisplay(); android.v ...
分类:
移动开发 时间:
2016-08-18 19:45:40
阅读次数:
158
Android隐藏状态栏、导航栏 [java] view plain copy private void hideStatusNavigationBar(){ if(Build.VERSION.SDK_INT<16){ this.getWindow().setFlags(WindowManager. ...
分类:
移动开发 时间:
2016-08-17 19:34:06
阅读次数:
209
onCreate(){ getWindow().addFlags(WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON); } onStop(){ getWindow().removeFlags(WindowManager.LayoutParams.FLAG_ ...
分类:
其他好文 时间:
2016-08-13 06:31:49
阅读次数:
195
WindowManager
在前面《Android开发笔记(六十六)自定义对话框》中,我们提到每个页面都是一个Window窗口,许多的Window对象需要一个管家来打理,这个管家我们称之为WindowManager窗口管理。在手机屏幕上新增或删除页面窗口,都可以归结为WindowManager的操作,下面是该管理类的常用方法说明:
getDefaultDisplay : 获取默认的显示屏信息。...
分类:
移动开发 时间:
2016-08-10 17:44:32
阅读次数:
880
在app编码中经常需要获取手机的屏幕分辨率(宽*高),原来我直接上网拷贝代码,但在使用过程中却发现诸多不便。
不便一:下面代码中的getWidth和getHeight在adt上提示deprecated已经废弃了,实在扎眼
WindowManager wm = getWindowManager();
Display display = wm.getDefaultDisplay(); ...
分类:
移动开发 时间:
2016-08-05 00:59:48
阅读次数:
164
/** * The top of a view hierarchy, implementing the needed protocol between View * and the WindowManager. This is for the most part an internal implem ...
分类:
其他好文 时间:
2016-07-28 14:00:26
阅读次数:
182