摘要: Android 中的View更新方法 postInvalidate 在非UI线程中通知重绘。 View 确定自身已经不适合现有区域时,调用requestLayout(),通知父View重新测量和绘制此View的位置。 当View的LayoutParams发生改变时,也应该调用这个方法。 reques 阅读全文
posted @ 2017-05-25 19:01 一点点征服 阅读(1469) 评论(0) 推荐(0) 编辑
摘要: /获取屏幕原始尺寸高度,包括虚拟功能键高度 public static int getDpi(Context context){ int dpi = 0; WindowManager windowManager = (WindowManager) context.getSystemService(C 阅读全文
posted @ 2017-05-25 18:57 一点点征服 阅读(2037) 评论(0) 推荐(0) 编辑
摘要: //获取虚拟按键的高度 public static int getNavigationBarHeight(Context context) { int result = 0; if (hasNavBar(context)) { Resources res = context.getResources 阅读全文
posted @ 2017-05-25 18:46 一点点征服 阅读(11264) 评论(0) 推荐(1) 编辑