Tagged Questions
0
votes
0answers
38 views
Display an Android live wallpaper in a fragment
Is there any way to display an Android live wallpaper in a fragment? I have a live wallpaper, and currently if the user wants to change some settings, they need to click settings, make a change, hit ...
3
votes
4answers
200 views
Can a live wallpaper lock the screen in portrait mode?
Can a live wallpaper lock the screen in portrait mode? And if so, how?
I should mention that I have seen two supposed answers to this question on SO, one appeared inordinately complicated, I didn't ...
0
votes
0answers
44 views
Viewing a list of installed wallpapers on an android device
I am writing an android application and would like to present a list of all of the wallpapers that are installed on the device to the user. The user will then be able to select these wallpapers for ...
8
votes
1answer
917 views
Find out if different home- and lockscreen wallpapers are set
I have a running live wallpaper and react to SCREEN_ON event to display changes on the canvas. However on some phones the user can set a different lockscreen and homescreen wallpaper (Touchwiz, some ...
1
vote
0answers
269 views
OpenGL Live Wallpaper Crashes only on Samsung Phones (most notably on Samsung Galaxy s3)
Well I have a question that is absolutely puzzling me. I have a live wallpaper ...
0
votes
2answers
254 views
How to solve lag in Live Wallpaper?
I'm creating my first live wallpaper in which snow will produce on random location and start animate.But it lags.
This was my code.
There is no error in the code but it lags.If i increased the number ...
0
votes
0answers
34 views
How to set chooser image for Live Wallpaper? [duplicate]
Possible Duplicate:
How to set the Android Live Wallpaper icon (aka “thumbnail”)
Notice the GL Wallpaper Test Project
has an ugly, default image, and all the rest have beautiful images in ...
0
votes
0answers
118 views
How do i get the selected live wallpaper on android?
I successfully retrieved the selected wallpaper from wallpaper manager and applied it to my app background with this code:
`
LinearLayout parent = (LinearLayout) ...
1
vote
1answer
432 views
Check Wallpaper programmatically in android?
Our android devices Home Screen contains Wallpaper or Live-Wallpaper. How do check through programmatically the Wallpaper is Live-Wallpaper or not.
Is it possible?
Thanks.
0
votes
0answers
96 views
How to obtain and draw Android's system wallpaper in my app
I am struggling to use the system wallpaper as a bg for one of the Views in my app. What I am looking for is a way of obtaining a Drawable or something that I can use to draw in my view.
For static ...
2
votes
0answers
195 views
Failed to register input channel - live wallpaper
I encountered similar problem as this.
The crash report is from Google Play and I can't reproduce it by myself. I tried to download Launcher Pro but that wasn't causing any troubles.
Here is the ...
3
votes
1answer
588 views
Live Wallpaper and extended background
I'm trying to create a live wallpaper with an animation always centered in the current homescreen page, without loosing the extended background.
What I'm doing right now is to draw my custom ...
5
votes
2answers
472 views
How to set Live Wallpaper automatically everyday in android
I am developing a wallpaper app. We can add simple wallpaper automatically by using the following code with a service.
final WallpaperManager wallpaperManager = ...
2
votes
2answers
392 views
Wallpaper should change automatically on Android phone every day
I want to make a service which can set wallpaper every day on the Android device Home Screen.
How can we do this? Any help is appreciated.
3
votes
0answers
241 views
Android live wallpaper crashing because of custom fonts
I'm trying to create a live wallpaper in Android. It has a text drawn on it in the following way, with customs string placed in the assets directory:
String path = "fonts/calligraffiti.ttf";
...
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 ...
0
votes
1answer
544 views
set android app background to picture or live wallpaper
I was recently told to convert my flash app over to a tablet. So I only just started coding in the java language.
I am going to have a default picture set as the background. However, if the user ...
1
vote
2answers
352 views
Change Wallpaper intent Application crashes in Nook Color:
I need to develop a Wallpaper application for Nook Color. I have installed the Nook color addon after that when i use this code in my app and it gets crashed every time. The below API Intent to allow ...
0
votes
1answer
4k views
Android Live Wallpaper + Sprite Animation
I'm a newbie in programming and is very much interested in knowing how to create my own Android Live Wallpaper. I know that a lot of resources are out there but they were pertaining to some advance ...
12
votes
4answers
10k views
Simplest example of an Android live wallpaper
I'm trying to make an android live wallpaper. I am looking for just a simple example that just displays a solid background and does nothing else to get me started. I've looked up quite a few tutorials ...
0
votes
1answer
374 views
android wallpaper onOffsetsChanged image shadow
public void onOffsetsChanged(float xOffset, float yOffset,
float xOffsetStep, float yOffsetStep, int xPixelOffset,
int yPixelOffset) {
after onOffsetsChanged, I run my draw method, which has
...
1
vote
1answer
806 views
Activity UI on top of the current Android live wallpaper - how to have left or right swipes handled like on Android desktops?
I'm trying to create my activity's view on top of the current system wallpaper by setting
<activity android:theme="@android:style/Theme.Wallpaper.NoTitleBar">
or
<activity ...
9
votes
1answer
1k views
Prevent Live Wallpaper orientation change when an application is opened and orientation is changed?
I'm having an orientation issue with a Live Wallpaper that I wrote. Basically the canvas will rotate depending on the application opened above it. I tested this and realized that the ...
1
vote
1answer
1k views
launch browser intent in live wallpaper
I am trying to load BROWSER VIEW intent in android within onTouchEvent. Basically I have created a live wallpaper and if I click on it then I want to open BROWSER VIEW intent with a specified uri.
I ...
6
votes
2answers
2k views
Android - Live Wallpaper offset clipping
I am writing a live wallpaper for android. To test my basic code was working I drew a rectangle in the top left-hand cornor of the screen:
canvas.drawRect(0f,0f,50f,50f,paint);
Half of the ...
