Tagged Questions
0
votes
1answer
113 views
onResume for WallpaperService
Is there a method like onResume for WallpaperService?
I tried:
@Override
protected void onResume() {
super.onResume();
}
but it tells me that The method onResume() is undefined for the type ...
0
votes
1answer
400 views
WallpaperService and Accelerometer
After trying everything I thought I will try to see if someone here knows what is my problem, before I give up completely. So what I am trying to do is to make my image slide behind this "rotating ...
1
vote
0answers
102 views
Camera Contents in Wallpaper Surface
I am working on an application in ANDROID in which I need to create a service (A wallpaper service) which executes in background and displays the live contents of Camera on the Wallpaper surface.
I ...
1
vote
1answer
1k views
Set Android live wallpaper by code, without user interaction
I want to automatically set the live wallpaper in Android by code, without any user interface for wallpaper selection.
Simple wallpaper setting automatically setting is possible by code:
final ...
1
vote
1answer
252 views
Is there any way to bind to a live wallpaper service?
I have a live wallpaper which has some resources loaded and set up inside my custom WallpaperService class. Something like this:
class MyLiveWallpaperService extends WallpaperService {
...
1
vote
2answers
833 views
Start a live wallpaper service from activity
public class ShortCurActivity extends Activity{
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
final ...
0
votes
1answer
208 views
Android: IPC with a subclass of WallpaperService
I am trying to make a live wallpaper on Android. I have one class
public class MyWallpaperService extends WallpaperService {
}
And annother class:
public class SettingsActivity extends Activity {
...