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

Hi i am a new android application developer

And i am trying to create a Slideshow live wallpaper application

I want to create a live wallpaper such that it slide shows sequence of different images for every 5 to 10 seconds or anytime that we pre programmed

I searched in google and stackoverflow I swear i cant find a solution for my problem

Please help me out !!!!

Thanks in advance.

Waiting for your answers.

I tried using the below code , I dont know how to edit it for my requirements

If any changes can be made in the code please do or if you know any better code or repositories please give and help me

 package com.livewallpaper.mw3lwp;

import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.graphics.Canvas;
import android.os.Handler;
import android.service.wallpaper.WallpaperService;
import android.view.SurfaceHolder;

public class ModernWarfare3LiveWallpaper extends WallpaperService {
private final Handler handler = new Handler();
public float mxOffset;
public void onCreate() 
{
    super.onCreate();
}

public void onDestroy() 
{
    super.onDestroy();
}

public Engine onCreateEngine() 
{
    return new CercleEngine();
}

class CercleEngine extends Engine {

    private final Runnable drawRunner = new Runnable(){
        @Override
        public void run() {
            updateBG();
            drawFrame();

        }
    };

    public Bitmap myBg;
    int bgcycle = 0;

    public void updateBG() {
        if(bgcycle==50){
            bgcycle=0;
        }

        switch (bgcycle) {
            case 0: myBg = BitmapFactory.decodeResource(getResources(),R.drawable.n01); break;
            case 1: myBg = BitmapFactory.decodeResource(getResources(),R.drawable.n02); break;
            case 2: myBg = BitmapFactory.decodeResource(getResources(),R.drawable.n03); break;
            case 3: myBg = BitmapFactory.decodeResource(getResources(),R.drawable.n04); break;
            case 4: myBg = BitmapFactory.decodeResource(getResources(),R.drawable.n05); break;
            case 5: myBg = BitmapFactory.decodeResource(getResources(),R.drawable.n06); break;

        }

        bgcycle++;
    }

    CercleEngine() 
    {   
        updateBG(); 
    }


    public void onCreate(SurfaceHolder surfaceHolder) 
    {
        super.onCreate(surfaceHolder);
    }

    @Override
    public void onOffsetsChanged(float xOffset, float yOffset, float xStep, float yStep, int xPixels, int yPixels) 
    {
        super.onOffsetsChanged(mxOffset, yOffset, xStep, yStep, xPixels, yPixels);
        mxOffset = xPixels;
        drawFrame();
    }



    void drawFrame() 
    {
        final SurfaceHolder holder = getSurfaceHolder();

        Canvas c = null;
        try 
        {
            c = holder.lockCanvas();
            if (c != null) 
            {           

                c.save();
                c.translate((float) mxOffset, 0f);

                if(myBg != null) {
                    updateBG();
                    c.drawBitmap(myBg, 0, 0, null);
                }

                c.restore();
                //updateBG();
                //c.drawBitmap(myBg, 0, 0, null);

            }
        }finally{
            if (c != null) holder.unlockCanvasAndPost(c);
        }
        handler.removeCallbacks(drawRunner);
    }
}
}
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.