How to set parallax layout as my layered live wallpaper which moved with device acceleration?

242 Views Asked by At
private ParallaxLayerLayout parallaxLayout;
private SensorTranslationUpdater translationUpdater;

translationUpdater = new SensorTranslationUpdater(this);
parallaxLayout.setTranslationUpdater(translationUpdater);

translationUpdater.registerSensorManager();

I want to set parallax layout as my Live wallpaper. Here I mentioned above code for set multiple image layers for parallax layout and its working completely in activity, but now how to set it as a live wallpaper.

0

There are 0 best solutions below