AlertDialog dialog = new AlertDialog.Builder(this).create();
dialog.show();
WindowManager.LayoutParams params = dialog.getWindow().getAttributes();
params.width = 200;
params.height = 200 ;
dialog....
分类:
其他好文 时间:
2014-07-22 08:25:36
阅读次数:
176
1. 在Activity中的onCreate方法中加入如下代码: //Remove title bar
this.requestWindowFeature(Window.FEATURE_NO_TITLE);
//Remove notification bar
this.getWindow().setFlags(WindowManager.L...
分类:
移动开发 时间:
2014-07-21 10:08:56
阅读次数:
362
写Android程序的时候一般用WindowManager就是去获得屏幕的宽和高,来布局一些小的东西。基本上没有怎么看他的其他的接口。这两天想写一个简单的类似于Toast的东西,自定义布局,突然发现,原来Toast的时间是不能自己定义的,只有两个固定的时间,分别是2秒和3.5秒。我的需求是自定义显示...
获取屏幕宽高尺寸的三种代码形式在Android上,目前我知道的获取屏幕尺寸的方法有三种不同的代码形式方法1.在Activity中最常见的调用方式WindowManager windowManager = getWindowManager();Display display = windowManag...
分类:
移动开发 时间:
2014-07-19 20:00:48
阅读次数:
201
//设置窗体全屏getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);//设置窗体始终点亮getWindow().setFlags(Wi...
分类:
移动开发 时间:
2014-07-16 21:06:34
阅读次数:
304
全屏在Activity的onCreate方法中的setContentView(myview)调用之前添加下面代码requestWindowFeature(Window.FEATURE_NO_TITLE);//隐藏标题getWindow().setFlags(WindowManager.LayoutP...
分类:
移动开发 时间:
2014-07-16 19:52:27
阅读次数:
327
设置全屏1、在onCreat方法中setContentView()之前插入requestWindowFeature(Window.FEATURE_NO_TITLE);//取消标题栏getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCR...
分类:
移动开发 时间:
2014-07-14 00:40:35
阅读次数:
336
这个错误是和调用相机摄像头相关的。产生这个错误的原因主要在于代码控制分辨率的显示和真机测试分辨率不一样。 一:解决办法WindowManager wm = (WindowManager) getSystemService(Context.WINDOW_SERVICE);Display display...
分类:
移动开发 时间:
2014-07-11 23:59:27
阅读次数:
418
原文地址:http://www.3g-edu.org/news/art027.htm下面就介绍一下如何通过WindowManager来实现这个效果。通过WindowManager的addView()方法,并设置WindowManager.LayoutParams的相关属性,就可以往WindowMan...
分类:
移动开发 时间:
2014-07-11 10:51:27
阅读次数:
287
(1)View:最基本的UI组件,表示屏幕上的一个矩形区域。
(2)Window: 表示一个窗口,不一定有屏幕那么大,可以很大也可以很小;
它包含一个View tree和窗口的layout 参数。
View tree的root View可以通过getDecorView得到。还可以设置Win...
分类:
移动开发 时间:
2014-07-06 10:00:59
阅读次数:
295