摘要:
Blogpost about support appcompat v21 from Chris Banes 阅读全文
摘要:
//如果是获取单位是像素,可以如下: Display display = getWindowManager().getDefaultDisplay(); Point size = new Point(); display.getSize(size); int width = size.x; int height = size.y; //如果不在Activity页面,可以通过获取默认displ... 阅读全文