码迷,mamicode.com
首页 >  
搜索关键字:windowmanager    ( 389个结果
Activity常用设置
Activity全屏Activity中添加this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,WindowManager.LayoutParams.FLAG_FULLSCREEN); this.requestWin...
分类:其他好文   时间:2015-07-23 21:40:26    阅读次数:192
android window
quit.show(); WindowManager.LayoutParams params0 = quit.getWindow().getAttributes();params0.width = (int) (scrrenW*0.9); params0.height = (in...
分类:移动开发   时间:2015-07-20 21:15:20    阅读次数:128
android 任意类 获得屏幕大小
WindowManager managet=(WindowManager) context.getSystemService(Context.WINDOW_SERVICE); DisplayMetrics dm=new DisplayMetrics(); managet.getDefaultD...
分类:移动开发   时间:2015-07-20 16:13:45    阅读次数:143
转:Android 设置屏幕不待机
本文转载于:http://blog.csdn.net/yudajun/article/details/7748760Android设置支部待机有两种方法第一种简单通过设置WindowManager属性实现:在Activity oncreat()方法中设置getWindow().setFlags(Wi...
分类:移动开发   时间:2015-07-18 22:38:14    阅读次数:141
Android之——常见Bug及其解决方案
1.android.view.WindowManager$BadTokenException: Unable to add window -- token null is not for an application 解决方案:将getApplication改成xxxx.this 2.call you are unregister onbrocastRevicer? 解决方案:忘记注销广播...
分类:移动开发   时间:2015-07-18 15:42:24    阅读次数:403
Android Activity 常用功能设置(全屏、横竖屏等)
Activity全屏设置方式1:AndroidManifest.xml方式2:代码实现requestWindowFeature(Window.FEATURE_NO_TITLE); //隐藏标题栏getWindow().setFlags(WindowManager.LayoutParams.FLAG_...
分类:移动开发   时间:2015-07-16 15:33:59    阅读次数:262
Android -- 桌面悬浮,仿360
实现原理这种桌面悬浮窗的效果很类似与Widget,但是它比Widget要灵活的多。主要是通过WindowManager这个类来实现的,调用这个类的addView方法用于添加一个悬浮窗,updateViewLayout方法用于更新悬浮窗的参数,removeView用于移除悬浮窗。其中悬浮窗的参数有必要...
分类:移动开发   时间:2015-07-15 13:02:31    阅读次数:141
android悬浮窗应用
部分代码如下: public void ShowAlertScreen(Context context,String titles,String content,String phone) { // 获取Service wm = (WindowManager) context.getSyste...
分类:移动开发   时间:2015-07-13 18:28:06    阅读次数:255
【Android】设置全屏和横屏
【设置全屏】在setLayout之前使用如下代码1 requestWindowFeature(Window.FEATURE_NO_TITLE);//隐藏标题2 getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREE...
分类:移动开发   时间:2015-07-13 18:15:56    阅读次数:189
兔子--android.view.windowmanager BadTokenException :unable to add window token null is not for applica
导致报这个错是在于new AlertDialog.Builder(mcontext),虽然这里的参数是AlertDialog.Builder(Context context)但我们不能使用getApplicationContext()获得的Context,而必须使用Activity,因为只有一个Activity才能添加一个窗体。  环境变量传入错误,不能使application的环境...
分类:移动开发   时间:2015-07-13 12:11:20    阅读次数:157
389条   上一页 1 ... 18 19 20 21 22 ... 39 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!