我为Android 4.4.2构建我的自定义启动器,并且有一些壁纸问题。当我设置新壁纸时,一切都是适合屏幕的好图像,但重新加载设备后,壁纸会缩放,我看到唯一的中心部分,即使屏幕尺寸和图像大小默认相同。 我认为这是因为多屏幕模式,但我不确定。现在我每次使用广播接收器在ACTION_BOOT事件上重置壁纸,但它提供了一些滞后,看起来不像一个优雅的解决方案。 我用这个类设置并重新加载壁纸:
public class WallpaperUtils {
public static final String PREF_CUSTOM_WALLPAPER = "PREF_CUSTOM_WALLPAPER";
public static final String PREF_WALLPAPER_RES = "PREF_WALLPAPER_RES";
public static void reloadWallpaper(Context context) {
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(context);
boolean isCustomWallpaper = prefs.getBoolean(PREF_CUSTOM_WALLPAPER, false);
if (isCustomWallpaper) {
int wallRes = prefs.getInt(PREF_WALLPAPER_RES, 0);
setWallpaper(context, wallRes);
}
}
public static void setWallpaper(Context context, int wallRes) {
WallpaperManager manager = WallpaperManager.getInstance(context.getApplicationContext());
WindowManager window = (WindowManager) context.getSystemService(Context.WINDOW_SERVICE);
DisplayMetrics metrics = new DisplayMetrics();
window.getDefaultDisplay().getMetrics(metrics);
int width = metrics.widthPixels;
int height = metrics.heightPixels;
Bitmap tempBitmap = BitmapFactory.decodeResource(context.getResources(), wallRes);
Bitmap bitmap = Bitmap.createScaledBitmap(tempBitmap, width, height, true);
manager.setWallpaperOffsetSteps(1, 1);
manager.suggestDesiredDimensions(width, height);
try {
manager.setBitmap(bitmap);
} catch (IOException e) {
e.printStackTrace();
}
}
}
并在AndroidManifest主屏幕中显示:
<activity
android:name=".ui.main.MainActivity"
android:launchMode="singleTask"
android:screenOrientation="landscape"
android:theme="@android:style/Theme.Wallpaper.NoTitleBar.Fullscreen">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.HOME" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
在默认的启动器壁纸尺度太大,所以我不认为风格有问题,但我找不到问题出在哪里。
答案 0 :(得分:0)
在研究了android主题和样式后,我将了解出了什么问题。
@android:风格/主题
已弃用,建议不要在API 11之后使用。
所以我只是通过壁纸管理器在onStart回调中获取主屏幕活动中的壁纸,并设置为主要布局的背景。