首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > 移动开发 >

设立屏幕亮度的悲剧

2012-09-24 
设置屏幕亮度的悲剧WindowManager.LayoutParams localLayoutParams getWindow().getAttributes()System

设置屏幕亮度的悲剧

      WindowManager.LayoutParams localLayoutParams = getWindow().getAttributes();      System.out.println(localLayoutParams.screenBrightness);        localLayoutParams.screenBrightness = new Random(System.currentTimeMillis()).nextInt(10)*1F/10F;        getWindow().setAttributes(localLayoutParams);


说的都没错,但是如果嵌套在tabtab里卖弄的话,请getParent().......

热点排行