Android
Obliczanie wymiarów widoku
Szukaj…
Uwagi
Zauważ, że instancja ViewTreeObserver
powiązana z instancją View
może stać się niepoprawna, gdy ten View
jeszcze żyje. Z javadocs View.getViewTreeObserver
:
// The returned ViewTreeObserver observer is not guaranteed to remain
// valid for the lifetime of this View. If the caller of this method keeps
// a long-lived reference to ViewTreeObserver, it should always check for
// the return value of {@link ViewTreeObserver#isAlive()}.
Tak więc, jeśli wcześniej dodałeś detektor do instancji ViewTreeObserver
i teraz chcesz go usunąć, najłatwiej jest wywołać getViewTreeObserver
na odpowiedniej instancji View
ponownie, aby otrzymać nową instancję ViewTreeObserver
. (Sprawdzanie isAlive
w istniejącej instancji jest bardziej pracochłonne i ma niewielką korzyść; jeśli ViewTreeObserver
już nie żyje, i tak ViewTreeObserver
tę nową referencję!)
Obliczanie początkowych wymiarów widoku w działaniu
package com.example;
import android.os.Bundle;
import android.support.annotation.Nullable;
import android.util.Log;
import android.view.View;
import android.view.ViewTreeObserver;
public class ExampleActivity extends Activity {
@Override
protected void onCreate(@Nullable final Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_example);
final View viewToMeasure = findViewById(R.id.view_to_measure);
// viewToMeasure dimensions are not known at this point.
// viewToMeasure.getWidth() and viewToMeasure.getHeight() both return 0,
// regardless of on-screen size.
viewToMeasure.getViewTreeObserver().addOnPreDrawListener(new ViewTreeObserver.OnPreDrawListener() {
@Override
public boolean onPreDraw() {
// viewToMeasure is now measured and laid out, and displayed dimensions are known.
logComputedViewDimensions(viewToMeasure.getWidth(), viewToMeasure.getHeight());
// Remove this listener, as we have now successfully calculated the desired dimensions.
viewToMeasure.getViewTreeObserver().removeOnPreDrawListener(this);
// Always return true to continue drawing.
return true;
}
});
}
private void logComputedViewDimensions(final int width, final int height) {
Log.d("example", "viewToMeasure has width " + width);
Log.d("example", "viewToMeasure has height " + height);
}
}
Modified text is an extract of the original Stack Overflow Documentation
Licencjonowany na podstawie CC BY-SA 3.0
Nie związany z Stack Overflow