解决Android平板电脑上开发应用程序不能全屏显示的问题
2010-12-18 08:03:50 来源:WEB开发网核心提示:10 WindowManager.LayoutParams.FLAG_FULLSCREEN);11 // 获得屏幕宽和高12 WindowManager windowManager = getWindowManager();13 Display display = windowManager.getDefaultDis
10 WindowManager.LayoutParams.FLAG_FULLSCREEN);
11 // 获得屏幕宽和高
12 WindowManager windowManager = getWindowManager();
13 Display display = windowManager.getDefaultDisplay();
14 int w = display.getWidth();
15 int h = display.getHeight();
16 v=new myview(this,w,h);
17 setContentView(v);
18 v.start();
19 }
20
21
22 }
[]
更多精彩
赞助商链接