[SOLVED!] [NST/G] How to get rid of default wallpaper? - Nook Touch General

I'm working on setting up a second NST and this time I want to arrange the launcher a little differently. I'm using ADW EX 1.3.3.9 and it seems to have picked up a default wallpaper from somewhere on the device (screenshot below). I can't find any way in ADW to do anything with wallpaper and I can't locate the image that's being used anywhere on the device. I don't want any wallpaper at all.
Can anyone point me in the right direction?
Edit: That was almost too easy...once I found the right ancient app. Then I created a 800x600 white png file and chose it for wallpaper. Magically it replaced the mysterious "n" image! I've attached a copy of the useful app

I have a simple (and boring) app for setting wallpaper.
You get a choice of black, white or aqua.
Note that wallpaper is usually larger than the screen size due to panning.
The only way to find out how large is to ask the system.
Code:
WallpaperManager manager = WallpaperManager.getInstance(this);
int width = manager.getDesiredMinimumWidth();
int height = manager.getDesiredMinimumHeight();
Wallpaper-1.0.apk is in the signature.

Related

[REQ]Change Launcer Icon Size

Hello,
Can anyone please tell me how to change the program icon size from the launcher tab (not the background squares, but the actual icon)?
I hate some of the stock icons for my programs / scripts, so I replaced them with different icons using the registry, but for some reason it shrinks them down to something like 32x32 or 64x64, the default size everyone has. My plan is to get rid of the background box altogether and go with like a 128x128 icon if possible.
I am not sure if there is a registry setting I am missing or if you have to hex edit a manilla file. I am open to either.
Thanks,
Josh
Not possible...
I may be wrong, because whenever anyone is explaining why something can't be done, they're usually interupted by the person doing it! I think you'll find the image size is hard-coded into Manila. Whatever size you make the image file, it will always be stretched to 'fill' the picture box on the launcher tab

Rename / replace default live wallpaper?

Can anyone point me to the folder / place that I can rename or replace the default nexus one wallpaper?
Live Wallpapers always crash, then loading the default colored grid wallpaper.
What I'd like to do is say, take the starfield live paper, and give it the same name as the default.. so if it crashes, it's automatically reloaded.
Just an annoying little issue I've experienced since the device was released..
(Now on the latest Cyan.)
Thanks!
C

[Q] Live Wallpaper Backgroud

I am pretty new into android development and have a couple questions I'm sure you guys can answer pretty quickly but have so far not been able to figure out. How do I have a set background in a live wallpaper besides just creating something from canvas, I have it already loaded in the hdpi I just need to figure out how to call it. Also, is it possible to have something appear enlarge a little bit in the center of the screen then fall off the screen? I'm trying to create a time lapse of a tree where it goes through all the weather changes. Any sites you could link me too or answers you would have would be greatly appreciated. Thanks for anything you guys are able to do.
Can you be more specific? When you say background are you talking about an image file you've added as a drawable?
If you use the drawBitmap method you can draw images anywhere on a canvas.
This is roughly how I do it on my Live Wallpapers.
Code:
Bitmap background = BitmapFactory.decodeResource(getResources(), R.drawable.background);
c.drawBitmap(background, 0, 0, null);
That will draw the bitmap at the upper left most position on your canvas.
If you want your live wallpaper to slide left and right as you swipe between home screens you need to adjust the x position based on the offset. Look at the cube live wallpaper source code for more information on how to get the offset value.
What I have is a picture loaded in the hdpi file that I want to use as my background, the thing with the cube is it shows you how to draw a picture but not add one into it. I want to load in the photo and then have objects enlarge and drop down around the center of this picture. The design I'm going for is a time lapse of a tree. I was told surfaceView can set your background but I'm not sure if that's the case or not. Thanks for the reply though I appreciate it.
bearcatext said:
the thing with the cube is it shows you how to draw a picture but not add one into it.
Click to expand...
Click to collapse
It works exactly the same but instead of using c.drawLine() you use c.drawBitmap()
That makes a lot of sense thanks, and for the leaves falling would you just set the coordinates to somewhere in the middle then? Also, is there a way to have an image change color mid-screen so it looks like fall is hitting? Thanks for all your help again though.

Setting an image as a wallpaper scaling problems

Hi,
I am trying to set an image as my homescreen wallpaper. However, when I choose "Set as Wallpaper," it brings me to a cropping screen where I have to select a portion of the image as the wallpaper. As a result, the portion that I select is chosen as the wallpaper, resulting in a zoomed/blurry/pixelated wallpaper.
Is there anyway I can use the whole image as a wallpaper? I tried using images of all resolutions from 1280x800 to 1920x1080. Yet, I have to crop the image in all attempts.
Thanks
Download quickpic and try using it for the wallpaper.
Sent from my LG-P999 using xda app-developers app
STXInnovation said:
Hi,
I am trying to set an image as my homescreen wallpaper. However, when I choose "Set as Wallpaper," it brings me to a cropping screen where I have to select a portion of the image as the wallpaper. As a result, the portion that I select is chosen as the wallpaper, resulting in a zoomed/blurry/pixelated wallpaper.
Is there anyway I can use the whole image as a wallpaper? I tried using images of all resolutions from 1280x800 to 1920x1080. Yet, I have to crop the image in all attempts.
Thanks
Click to expand...
Click to collapse
You can also try using Multi picture live wallpaper or custom launcher like Nova, Apex etc
STXInnovation said:
Hi,
I am trying to set an image as my homescreen wallpaper. However, when I choose "Set as Wallpaper," it brings me to a cropping screen where I have to select a portion of the image as the wallpaper. As a result, the portion that I select is chosen as the wallpaper, resulting in a zoomed/blurry/pixelated wallpaper.
Is there anyway I can use the whole image as a wallpaper? I tried using images of all resolutions from 1280x800 to 1920x1080. Yet, I have to crop the image in all attempts.
Thanks
Click to expand...
Click to collapse
Hi, STXInnovation...
Not all wallpapers (images) will crop exactly according to the screen metrics of the Nexus 7... it depends on the images dimensions; usually you have to put up with a compromise... (1280x1024 seems to be the optimal).
You can edit the image (scale it) with something like Photo Editor, but it's a lot of messing round, and there is usually some lossage (resolution) in the saved result.
As alluded to by both @redmonke255 and @ashik992, a combination of an alternative launcher (like Apex), and QuickPic will afford you more wallpaper cropping options then with the stock launcher or gallery.
---------------------------------
Personally, I've never been a big fan of scrolling wallpapers on the Nexus 7 anyway... used primarily in portrait mode, I prefer static wallpapers. On a 10" inch tablet, used in landscape mode, scrolling wallpapers looks terrific.
So, on my Nexus 7, here's I how set up my wallpaper...
In Apex Launcher settings, there is an option called 'Wallpaper Mode', for which you can set 'Single Screen (non-scrolling)'... then with QuickPic, select (and load) your chosen wallpaper, and then choose 'Set as... (QuickPic Wallpaper)' from the menu... a moveable/re-sizeable cropper box will appear of the same screen dimensions as the Nexus 7. Hit the tick button in the top right hand corner..., and your wallpaper will be set accordingly.
This is just one possible setup out of many... so it's worth tinkering until you find something you're happy with.
Finally, PicSpeed HD Wallpapers is also worth looking into; as well as offering a veritable cornucopia of excellent wallpapers for download, it also provides good cropping abilities, which can be accessed directly from QuickPic with any images you happen to have stored on your Nexus 7.
----------------------------------
Hope this helps, and gives you some pointers.
Rgrds,
Ged.
The Nexus can take several wallpaper sizes.
Stock, the wallpaper size should be 1600x1280. That is, 1600 width, 1280 height.
If you install simple image wallpaper (free), you can use 800x1280 or 1280x800 images as well (for portrait, and landscape, respectively).
If you're using nova launcher, by default, it will accept 1920x1280 and 800x1280 sized images without cropping.
If you want to scale an image, I recommend using supersampling in paint.NET.

[Q] Why does TouchWiz not scale wallpapers properly?

(The following applies only to the original TouchWiz launcher, modified to enable scrolling wallpaper.)
I've noticed this lately - TouchWiz will quite frequently ignore your specific scaling settings in whatever wallpaper app you're using and crop out parts of the left and right sides of the wallpaper so that you don't get to see everything in full. It even does this with its own default wallpapers! Here's the proof:
(Original wallpaper (pic reduced to half its original size for easier viewing).)
(How the leftmost and rightmost sides look on the default launcher, default 5-home-screen setup, using Samsung's own wallpaper picker.)
In case you're wondering, the amount of home screens has nothing to do with it. All adding more does (and from this 5-screen default you can only add 2 more anyway) is slow the scrolling rate down in order to display just as 'much' of the wallpaper as before.
Furthermore, I've seen it screw up the scaling in similar ways with programs like QuickPic, ES File Explorer, Wallpaper Wizardrii and what have you.
The only workaround so far that I've found to getting it to display the whole wallpaper without leaving bits off of the edges is by resizing the wallpaper's width to 1680 pixels (so for instance, 1680x1920) and using the "Image 2 Wallpaper" app from Google Play, telling it to not resize the wallpaper.
I'm hoping this is something that can be rectified by modifying the SecLauncher APK, or the SecWallpaper APK, or whatever. An alternative launcher shouldn't be the only solution really!

Categories

Resources