나의 플랫폼/안드로이드
[Android] OnGlobalLayoutListener: deprecation and compatibility
GsBOB
2015. 11. 10. 15:06
@TargetApi(Build.VERSION_CODES.JELLY_BEAN)
public static void removeOnGlobalLayoutListener(View v, ViewTreeObserver.OnGlobalLayoutListener listener){
if (Build.VERSION.SDK_INT < 16) {
v.getViewTreeObserver().removeGlobalOnLayoutListener(listener);
} else {
v.getViewTreeObserver().removeOnGlobalLayoutListener(listener);
}
}
출처 : http://stackoverflow.com/questions/16189525/ongloballayoutlistener-deprecation-and-compatibility
## 이블로그는 어디까지는 찾았던 부분을 잊지 않기 위해 올려놓은 것 입니다.
내용이 부실해도 이해해 주시길 바랍니다.