336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
@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
## 이블로그는 어디까지는 찾았던 부분을 잊지 않기 위해 올려놓은 것 입니다.
내용이 부실해도 이해해 주시길 바랍니다.
'나의 플랫폼 > 안드로이드' 카테고리의 다른 글
[Android] Project에 Proguard 적용 하기 (0) | 2015.11.12 |
---|---|
[Android] getBaseContext, getApplicationContext 설명 (1) | 2015.11.11 |
[Android] android.support.v4.app.fragment.getallowreturntransitionoverlap (0) | 2015.11.10 |
[Anroid] 라운딩된 ImageView 만들기 (2) | 2015.11.09 |
[Android] 특정 Layout 위치에 Fragment를 변환 (0) | 2015.11.06 |