“Como obter visibilidade do elemento Android” Respostas de código

Como obter visibilidade do elemento Android

// simple answer for simply checking if it's VISIBLE or INVISIBLE
View.isShown()
Miss Skooter

Como obter visibilidade do elemento Android

//If the image is part of the layout it might be "View.VISIBLE" but 
//that doesn't mean it's within the confines of the visible screen. 
//If that's what you're after; this will work:

Rect scrollBounds = new Rect();
scrollView.getHitRect(scrollBounds);
if (imageView.getLocalVisibleRect(scrollBounds)) {
    // imageView is within the visible window
} else {
    // imageView is not within the visible window
}
Miss Skooter

Respostas semelhantes a “Como obter visibilidade do elemento Android”

Perguntas semelhantes a “Como obter visibilidade do elemento Android”

Mais respostas relacionadas para “Como obter visibilidade do elemento Android” em C

Procure respostas de código populares por idioma

Procurar outros idiomas de código