我正在尝试制作一款可以更改系统壁纸的应用。在我的代码中,我得到一个具有所需最小尺寸的图像(来自WallpaperManager)。例如,在Nexus One上,所需的最小尺寸为884x800。当我获得我的图像并将其设置为壁纸时,它会自动“左对齐”,以便我只能看到884x800图像的左侧(Nexus One的屏幕分辨率为480x800)。
有没有办法设置壁纸让它“居中”?
我正在设置这样的壁纸:
WallpaperManager wallpaperManager = WallpaperManager.getInstance(getApplicationContext());
try {
wallpaperManager.setBitmap(bitmap);
} catch (IOException e) {
Log.e("Error", e.toString());
}
注意:如果我将图像设为480x800,它会将图像吹起来,所以只有当它是壁纸时我才会看到左上角。
以下是884x800图像的示例:
以下是我将其设置为壁纸时的样子示例:
以下是我使用480x800图像时的样子示例:
答案 0 :(得分:0)
您是否尝试在虚拟主屏幕之间切换?你不是在最左边的虚拟主屏幕吗?
答案 1 :(得分:0)
我的解决方案
最后,我得到了屏幕尺寸的图像(Nexus One为480x800),然后将其复制到所需尺寸的位图(Nexus One为884x800)。
//Getting the image
Display display = getWindowManager().getDefaultDisplay();
screenSize = new Point();
display.getSize(screenSize);
new LoadImageTask(screenSize.x, screenSize.y, this).execute();
...
// In the response listener
WallpaperManager wallpaperManager = WallpaperManager.getInstance(this);
Point desiredSize = new Point(
wallpaperManager.getDesiredMinimumWidth(),
wallpaperManager.getDesiredMinimumHeight());
Bitmap wallpaper = Bitmap.createBitmap(desiredSize.x, desiredSize.y, Bitmap.Config.ARGB_8888);
Canvas canvas = new Canvas(wallpaper);
canvas.drawBitmap(bitmap, 0, 0, null);
try {
wallpaperManager.setBitmap(wallpaper);
} catch (IOException e) {
Log.e("Error", e.toString());
}
它适用于所有虚拟屏幕