“wie man Sichtbarkeit von Element Android bekommt” Code-Antworten

wie man Sichtbarkeit von Element Android bekommt

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

wie man Sichtbarkeit von Element Android bekommt

//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

Ähnliche Antworten wie “wie man Sichtbarkeit von Element Android bekommt”

Fragen ähnlich wie “wie man Sichtbarkeit von Element Android bekommt”

Weitere verwandte Antworten zu “wie man Sichtbarkeit von Element Android bekommt” auf C

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen