Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i wanted to set GIF as live wallpaper

And Ya i found the code from the following answer it works really good but there is a problem , that the wallpaper set in fixed screen only !!! so if i use any rectangular gif images , the gif image gets narrowed and my live wallpaper becomes a mess , so i am looking for any change do i have to make in the code to set the gif as live SCROLLABLE wallpaper ????? Please any changes in the code or any other code !!!!

Thanks in advance :-)

Reference link: Is it possible to set an animated gif file as live wallpaper in android?

Below is the code

public class NyanNyanService extends WallpaperService {
static final String TAG = "NYAN";
static final Handler mNyanHandler = new Handler();

/**
 * @see android.service.wallpaper.WallpaperService#onCreate()
 */
@Override
public void onCreate() {
    super.onCreate();
}

/**
 * @see android.service.wallpaper.WallpaperService#onCreateEngine()
 */
@Override
public Engine onCreateEngine() {
    try {
        return new NyanEngine();
    } catch (IOException e) {
        Log.w(TAG, "Error creating NyanEngine", e);
        stopSelf();
        return null;
    }
}

class NyanEngine extends Engine {
    private final Movie mNyan;
    private final int mNyanDuration;
    private final Runnable mNyanNyan;
    float mScaleX;
    float mScaleY;
    int mWhen;
    long mStart;

    NyanEngine() throws IOException {
        InputStream is = getResources().openRawResource(R.raw.nyan);
        if (is != null) {
            try {
                mNyan = Movie.decodeStream(is);
                mNyanDuration = mNyan.duration();
            } finally {
                is.close();
            }
        } else {
            throw new IOException("Unable to open R.raw.nyan");
        }

        mWhen = -1;
        mNyanNyan = new Runnable() {
            public void run() {
                nyan();
            }
        };
    }

    @Override
    public void onDestroy() {
        super.onDestroy();
        mNyanHandler.removeCallbacks(mNyanNyan);
    }

    @Override
    public void onVisibilityChanged(boolean visible) {
        super.onVisibilityChanged(visible);
        if (visible) {
            nyan();
        } else {
            mNyanHandler.removeCallbacks(mNyanNyan);
        }
    }

    @Override
    public void onSurfaceChanged(SurfaceHolder holder, int format, int width, int height) {
        super.onSurfaceChanged(holder, format, width, height);
        mScaleX = width / (1f * mNyan.width());
        mScaleY = height / (1f * mNyan.height());
        nyan();
    }

    @Override
    public void onOffsetsChanged(float xOffset, float yOffset, float xOffsetStep,
            float yOffsetStep, int xPixelOffset, int yPixelOffset) {
        super.onOffsetsChanged(xOffset, yOffset, xOffsetStep, yOffsetStep, xPixelOffset, yPixelOffset);
        nyan();
    }

    void nyan() {
        tick();
        SurfaceHolder surfaceHolder = getSurfaceHolder();
        Canvas canvas = null;
        try {
            canvas = surfaceHolder.lockCanvas();
            if (canvas != null) {
                nyanNyan(canvas);
            }
        } finally {
            if (canvas != null) {
                surfaceHolder.unlockCanvasAndPost(canvas);
            }
        }
        mNyanHandler.removeCallbacks(mNyanNyan);
        if (isVisible()) {
            mNyanHandler.postDelayed(mNyanNyan, 1000L/25L);
        }
    }

    void tick() {
        if (mWhen == -1L) {
            mWhen = 0;
            mStart = SystemClock.uptimeMillis();
        } else {
            long mDiff = SystemClock.uptimeMillis() - mStart;
            mWhen = (int) (mDiff % mNyanDuration);
        }
    }

    void nyanNyan(Canvas canvas) {
        canvas.save();
        canvas.scale(mScaleX, mScaleY);
        mNyan.setTime(mWhen);
        mNyan.draw(canvas, 0, 0);
        canvas.restore();
    }
}
}
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.