public boolean isViewCovered(final View view) {
View currentView = view;
Rect currentViewRect = new Rect();
boolean partVisible = currentView.getGlobalVisibleRect(currentViewRect);
boolean totalHeightVisible = (currentViewRect.bottom - currentViewRect.top) >= view.getMeasuredHeight();
boolean totalWidthVisible = (currentViewRect.right - currentViewRect.left) >= view.getMeasuredWidth();
boolean totalViewVisible = partVisible && totalHeightVisible && totalWidthVisible;
if (!totalViewVisible)//if any part of the view is clipped by any of its parents,return true
return true;
while (currentView.getParent() instanceof ViewGroup) {
ViewGroup currentParent = (ViewGroup) currentView.getParent();
if (currentParent.getVisibility() != View.VISIBLE)//if the parent of view is not visible,return true
return true;
int start = indexOfViewInParent(currentView, currentParent);
for (int i = start + 1; i < currentParent.getChildCount(); i++) {
Rect viewRect = new Rect();
view.getGlobalVisibleRect(viewRect);
View otherView = currentParent.getChildAt(i);
Rect otherViewRect = new Rect();
otherView.getGlobalVisibleRect(otherViewRect);
if (Rect.intersects(viewRect, otherViewRect))//if view intersects its older brother(covered),return true
return true;
}
currentView = currentParent;
}
return false;
}
private int indexOfViewInParent(View view, ViewGroup parent) {
int index;
for (index = 0; index < parent.getChildCount(); index++) {
if (parent.getChildAt(index) == view)
break;
}
return index;
}
android view是否被覆蓋
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
- 文/潘曉璐 我一進(jìn)店門(mén)量瓜,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái)司恳,“玉大人,你說(shuō)我怎么就攤上這事绍傲∪痈担” “怎么了?”我有些...
- 文/不壞的土叔 我叫張陵,是天一觀(guān)的道長(zhǎng)猎塞。 經(jīng)常有香客問(wèn)我试读,道長(zhǎng),這世上最難降的妖魔是什么邢享? 我笑而不...
- 正文 為了忘掉前任鹏往,我火速辦了婚禮,結(jié)果婚禮上骇塘,老公的妹妹穿的比我還像新娘伊履。我一直安慰自己,他們只是感情好款违,可當(dāng)我...
- 文/花漫 我一把揭開(kāi)白布唐瀑。 她就那樣靜靜地躺著,像睡著了一般插爹。 火紅的嫁衣襯著肌膚如雪哄辣。 梳的紋絲不亂的頭發(fā)上,一...
- 那天赠尾,我揣著相機(jī)與錄音力穗,去河邊找鬼。 笑死气嫁,一個(gè)胖子當(dāng)著我的面吹牛当窗,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播寸宵,決...
- 文/蒼蘭香墨 我猛地睜開(kāi)眼崖面,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼!你這毒婦竟也來(lái)了梯影?” 一聲冷哼從身側(cè)響起巫员,我...
- 序言:老撾萬(wàn)榮一對(duì)情侶失蹤,失蹤者是張志新(化名)和其女友劉穎甲棍,沒(méi)想到半個(gè)月后简识,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體,經(jīng)...
- 正文 獨(dú)居荒郊野嶺守林人離奇死亡感猛,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
- 正文 我和宋清朗相戀三年七扰,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片唱遭。...
- 正文 年R本政府宣布司致,位于F島的核電站拆吆,受9級(jí)特大地震影響,放射性物質(zhì)發(fā)生泄漏脂矫。R本人自食惡果不足惜枣耀,卻給世界環(huán)境...
- 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望庭再。 院中可真熱鬧捞奕,春花似錦、人聲如沸拄轻。這莊子的主人今日做“春日...
- 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)恨搓。三九已至院促,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間斧抱,已是汗流浹背常拓。 一陣腳步聲響...
- 正文 我出身青樓盏浙,卻偏偏與公主長(zhǎng)得像眉睹,于是被迫代替她去往敵國(guó)和親废膘。 傳聞我的和親對(duì)象是個(gè)殘疾皇子竹海,可洞房花燭夜當(dāng)晚...
推薦閱讀更多精彩內(nèi)容
- 來(lái)源:力扣(LeetCode)鏈接:https://leetcode-cn.com/problems/check-...
- 我買(mǎi)了第一行代碼 android 第二版丐黄,按照書(shū)中的例子開(kāi)始學(xué)習(xí)斋配,第一章沒(méi)問(wèn)題,第二章創(chuàng)建項(xiàng)目在給按鈕添加事件時(shí)報(bào)...
- 版權(quán)聲明:本文為博主原創(chuàng)文章灌闺,未經(jīng)博主允許不得轉(zhuǎn)載艰争。系列教程:Android開(kāi)發(fā)之從零開(kāi)始系列源碼:github....
- 引子 最近有項(xiàng)目開(kāi)始使用SurfaceView, 這個(gè)View跟Android中其他的View有很大的不同, 所以...
- 方法就是下面這兩行代碼 1.git reflog(查看你提交代碼的記錄) 2. git reset --hard ...