背景:在做一个进度条时,不想让它的背景变暗,以免影响其他区域的正常显示。在网上搜索时,看到的方法多数是:方法一 :在代码中 可以这么设置 Window mWindow = getWindow(); WindowManager.LayoutParams lp = mWindow.getAttribut...
分类:
其他好文 时间:
2014-12-11 15:23:51
阅读次数:
177
转载: http://blog.csdn.net/huxueyan521/article/details/8954844通过windowmananger来在窗口上添加view的时候,需要设置alert参数,而且要添加alert权限mLayoutParams = new WindowManager.L...
分类:
移动开发 时间:
2014-12-05 00:42:00
阅读次数:
166
文章转载至CSDN社区罗升阳的安卓之旅,原文地址:http://blog.csdn.net/luoshengyang/article/details/8526644在Android系统中,输入法窗口是一种特殊类型的窗口,它总是位于需要使用输入法的窗口的上面。也就是说,一旦 WindowManager...
分类:
移动开发 时间:
2014-12-04 17:42:40
阅读次数:
310
文章转载至CSDN社区罗升阳的安卓之旅,原文地址:http://blog.csdn.net/luoshengyang/article/details/8479101在Android系统中,Activity窗口的大小是由WindowManagerService服务来计算的。 WindowManager...
分类:
移动开发 时间:
2014-12-04 17:17:18
阅读次数:
489
WindowManager.LayoutParams wlp = new WindowManager.LayoutParams(width, height, WindowManager.LayoutParams.TYPE_SYSTEM_ERROR, ...
1.WindowManager wm = (WindowManager) getContext() .getSystemService(Context.WINDOW_SERVICE); int width = wm.getDefaultDisplay(...
分类:
移动开发 时间:
2014-11-26 16:11:45
阅读次数:
152
1 dialog 对话框出现和消失 使用的方法
final Dialog dialog = new Dialog(this);
dialog.show();
Window window = dialog.getWindow();
WindowManager.LayoutParams lp = window.getAttributes();
window.s...
分类:
移动开发 时间:
2014-11-24 17:16:59
阅读次数:
235
Gallery.java
//在onCreat方法中setContentView()之前插入
getWindow().setFlags(WindowManager.LayoutParams. FLAG_FULLSCREEN ,
WindowManager.LayoutParams. FLAG_FULLSCREEN);//全屏...
分类:
移动开发 时间:
2014-11-24 10:05:24
阅读次数:
150
1、在Android4.0之前的版本,可以在Activity中的onAttachedToWindow添加如下代码实现:@OverridepublicvoidonAttachedToWindow(){getWindow().setType(WindowManager.LayoutParams.TYPE_KEYGUARD_DIALOG);super.onAttachedToWindow();}2、4.0以后的版本,处理方法如下:先自己..
分类:
移动开发 时间:
2014-11-22 19:02:34
阅读次数:
173
要实现WindowManager添加的窗口,实现动画显示,就需要添加如下红色的属性,其他的添加View只要设置其Animations属性也会实现动画,当然自己实现也可,但是能直接用系统的已经实现好的,也很方便。windowManager = (WindowManager) mContext.getS...
分类:
移动开发 时间:
2014-11-21 01:14:04
阅读次数:
394