Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
473 views
in Technique[技术] by (71.8m points)

android - View getVisibility() isShown() return incorrect visibility

I've a view that gets conditionally added to parent. I check if its already added to parent or not, unfortunately, it always return its visible.

if (findViewById(R.id.bottom_bar).getVisibility == View.Visible)

if (findViewById(R.id.bottom_bar).isShown()) 

both return true even when view was never added ans is not visible.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

getVisibility() simply returns the visibility you want the view to have when added to the window. It doesn't change unless you call setVisibility(). It also doesn't indicate whether the view is actually visible on screen.

isShown() is similar. Here is the doc:

Returns the visibility of this view and all of its ancestors

Returns
True if this view and all of its ancestors are VISIBLE


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...