Android中咱們常常會用到判斷View的可見行,固然有人會說View.VISIBLE就能夠了,可是有時候這個真是知足不了,有時候咱們爲了優化,在View滾到得不可見的時候或者因爲滾到只顯示了部份內容的時候不作某些操做,View.VISIBLE這個時候是知足不了的。android
好比在 ScrollView(RecyclerView和ListView等都同樣)中滾動,會對其中的view產生生命週期影響,能夠參考一下:深刻理解android view 生命週期
當 ScrollView 中的view滾動致使View不可見了,會調用 onWindowVisibilityChanged 方法,注意是徹底不可見纔會調用 onWindowVisibilityChanged,當滾到致使View部分可見的時候也會調用onWindowVisibilityChanged方法,注意是部分可見也會調用,這樣就能夠監聽滾動控件中View的可見性。
咱們能夠重寫onWindowVisibilityChanged方法:ide
@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; }