标签:change ide 自定义 lan and android中 height rect ble
Android中我们经常会用到判断View的可见行,当然有人会说View.VISIBLE就可以了,但是有时候这个真是满足不了,有时候我们为了优化,在View滚到得不可见的时候或者由于滚到只显示了部分内容的时候不做某些操作,View.VISIBLE这个时候是满足不了的。
比如在 ScrollView(RecyclerView和ListView等都一样)中滚动,会对其中的view产生生命周期影响,可以参考一下:深入理解android view 生命周期
当 ScrollView 中的view滚动导致View不可见了,会调用 onWindowVisibilityChanged 方法,注意是完全不可见才会调用 onWindowVisibilityChanged,当滚到导致View部分可见的时候也会调用onWindowVisibilityChanged方法,注意是部分可见也会调用,这样就可以监听滚动控件中View的可见性。
我们可以重写onWindowVisibilityChanged方法:
@Override protected void onWindowVisibilityChanged(int visibility) { super.onWindowVisibilityChanged(visibility); if (visibility == View.VISIBLE){ WLog.d("danxx" ,"可见"); //开始某些任务 } else if(visibility == INVISIBLE || visibility == GONE){ WLog.d("danxx" ,"不可见"); //停止某些任务 } }
onWindowVisibilityChanged方法只能判断滚动控件中View的可见或者不可见,无法判断是完全可见或者是部分可见。使用下面的方法就可以判断View是不是只是部分可见:
/** * * @return */ protected boolean isCover() { boolean cover = false; Rect rect = new Rect(); cover = getGlobalVisibleRect(rect); if (cover) { if (rect.width() >= getMeasuredWidth() && rect.height() >= getMeasuredHeight()) { return !cover; } } return true; }
/** * 检测制定View是否被遮住显示不全 * @return */ protected boolean isCover(View view) { boolean cover = false; Rect rect = new Rect(); cover = view.getGlobalVisibleRect(rect); if (cover) { if (rect.width() >= view.getMeasuredWidth() && rect.height() >= view.getMeasuredHeight()) { return !cover; } } return true; }
标签:change ide 自定义 lan and android中 height rect ble
原文地址:https://www.cnblogs.com/xinmengwuheng/p/9081553.html