나의 플랫폼/안드로이드
[Android] Live Wallpaper 미리보기인지 아닌지 확인
GsBOB
2011. 5. 4. 13:42
WallpaperService.Engine의
isPreview() 함수로 확인이 가능합니다.
if(isPreview()){
Log.d("DEBUG","현재 미리보기 실행 중입니다.");
}else{
Log.d("DEBUG","실제 배경화면이 실행 중입니다.");
}
if(isPreview()){
Log.d("DEBUG","현재 미리보기 실행 중입니다.");
}else{
Log.d("DEBUG","실제 배경화면이 실행 중입니다.");
}
출처: http://developer.android.com/reference/android/service/wallpaper/WallpaperService.Engine.html