1 public void toggleFullscreen(boolean fullScreen) 2 { 3 //fullScreen为true时全屏 4 5 WindowManager.LayoutParams attrs = getWindow().ge...
分类:
移动开发 时间:
2015-11-25 23:25:49
阅读次数:
176
1 public void toggleFullscreen(boolean fullScreen) { 2 // fullScreen为true时全屏,否则相反 3 4 WindowManager.LayoutParams attrs = getWindow(...
分类:
移动开发 时间:
2015-11-22 12:32:13
阅读次数:
156
1 view.measure(RelativeLayout.LayoutParams.WRAP_CONTENT, RelativeLayout.LayoutParams.WRAP_CONTENT);2 int width = view.getMeasuredWidth();3 int height ...
分类:
其他好文 时间:
2015-11-19 18:38:12
阅读次数:
119
注意: /*toast窗体类型默认不响应窗体点击事件 params.type = WindowManager.LayoutParams.TYPE_TOAST;*/ /*制定具有电话优先级的窗体类型,需要添加权限 <uses-permission android:name="android.permission.SY...
分类:
其他好文 时间:
2015-11-08 16:39:46
阅读次数:
257
在代码里添加如下代码:activity设置dialog风格的方式WindowManager m = getWindowManager(); Display d = m.getDefaultDisplay(); //为获取屏幕宽、高 LayoutParams p = getWindow...
分类:
移动开发 时间:
2015-11-05 10:24:00
阅读次数:
191
//创建一个TextView---->textViewTextViewtextView = new TextView(this);//第一个参数为宽的设置,第二个参数为高的设置textView.setLayoutParams(new LayoutParams(LayoutParams.MATCH_P...
分类:
其他好文 时间:
2015-10-21 12:24:12
阅读次数:
128
本文参照自:http://developer.android.com/reference/android/view/WindowManager.LayoutParams.html BRIGHTNESS系列 该系列主要用于设置window的brightness(screenBrightness/buttonBrightness)。我们可以通过W...
分类:
移动开发 时间:
2015-10-13 21:21:41
阅读次数:
234
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN); requestWindowFeature(Window.FEATURE_NO_....
分类:
其他好文 时间:
2015-09-29 22:02:22
阅读次数:
100
1、设置activity无标题,全屏// 设置为无标题栏 requestWindowFeature(Window.FEATURE_NO_TITLE); // 设置为全屏模式 getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN...
分类:
移动开发 时间:
2015-09-18 15:20:08
阅读次数:
212
在一次笔试中搞混LayoutParams的用法,特来总结一番:LayoutParams继承于Android.View.ViewGroup.LayoutParams.LayoutParams相当于一个Layout的信息包,它封装了Layout的位置、高、宽等信息。假设在屏幕上一块区域是由一个Layou...
分类:
移动开发 时间:
2015-09-17 21:25:39
阅读次数:
242