본문 바로가기

나의 플랫폼/안드로이드

[Android] Live Wallpaper 미리보기인지 아닌지 확인

336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.

WallpaperService.Engine의 

isPreview() 함수로 확인이 가능합니다.

if(isPreview()){
    Log.d("DEBUG","현재 미리보기 실행 중입니다.");   

}else{
    Log.d("DEBUG","실제 배경화면이 실행 중입니다."); 

}

 



출처: http://developer.android.com/reference/android/service/wallpaper/WallpaperService.Engine.html