0
votes
0answers
45 views

use a custom view in android wallpaperservice

I am learning android. I tried a sample program which implements SensorEventListener. http://www.edumobile.org/android/android-development/accelerometer-example/ I want to convert this into a ...
1
vote
0answers
101 views

Android: How can I make interactive to live wallpaper?

I am building a simple launcher I have the following code in activity: public void onCreate(Bundle savedInstanceState){ setTheme(android.R.style.Theme_Holo_Wallpaper_NoTitleBar); ...
0
votes
0answers
193 views

Android Live Wallpaper and main activity in apps list

I just created a live wallpaper but i can't show it on the program list. The wallpaper apperas only in wallpaper list, by long pressing the home screen. Is there a way to show the wallpaper on both ...
1
vote
2answers
236 views

Android Live-wallpaper: Accessing resource folder

I'm currently stuck at making a live background using opengl ES2. Inside my renderer i want to access textures and shaders from the resource folders, but i cant find a way to do that. My current ...
0
votes
0answers
66 views

Waiting for an activity to finish it's onStart() from an inside of Live Wallpaper

Before starting my Live Wallpaper I need to initialize some parameters via a dummy Activity. The problem is that after the activity is really started in my code, it takes time for it to finish it's ...
0
votes
0answers
79 views

How to open an About window through Android livewallpaper settings

I've added a settings option for the live wallpaper and now I want to open a new window when the user clicks on the "About" button. When I try to do that, I get an error that says there's no activity ...
4
votes
2answers
1k views

Android: How to start activity from preference menu?

This is the Android Live Wallpaper. .LiveWallpaperSettings is main activity with settings preferences. <- works normally .AboutActivity is simple dialog activity. <- application craches I ...
0
votes
1answer
1k views

Open current live wallpaper settings from activity

I'm working on an Android live wallpaper. I have everything working just fine so far, but I need to be able to open the wallpaper settings (that already work in the wallpaper preview) from an ...
4
votes
2answers
3k views

How to create a settings activity for Android Live Wallpaper

How to create a settings activity in live wallpaper like this? Example Picture I've built settings activity with only a simple text and faced some problems. The first problem is that I can't use ...
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 { ...
1
vote
1answer
468 views

startActivityForResult from LiveWallpaper Service Android

I want the user to be able to tap on my livewallpaper to select an image from gallery. Is it possible to do this? To make this question more generic, how can we perform a startActivityForResult from a ...
1
vote
1answer
745 views

Activity / Live Wallpaper communication in Android

I've got a live wallpaper that I'd like to communicate with from an Activity in the same package. I've never done any work with services. Would I be able to use the Local Service pattern, or am I ...
1
vote
4answers
11k views

My PreferenceActivity does not show up, even though it is in my manifest file

So I am modifying the Cube live wallpaper example. I have a class that extends PreferenceActivity, and I added the Activity in my manifest file. I keep getting ActivityNotFoundExceptions. Here is ...