1

WallpaperService 是否有类似 onResume 的方法?

我试过了:

@Override
protected void onResume() {
    super.onResume();
}

但它告诉我该方法 onResume() 未定义为 WallpaperService 类型

我希望我的壁纸在用户在偏好中给出新值后自行刷新。

所以我想知道WallpaperService是否有像onResume这样的方法?还是有更好的方法来处理这种情况?

4

1 回答 1

0

壁纸引擎中没有 onResume() 方法。要收听首选项,您需要实现共享首选项侦听器,您可以获得更改后的值。

于 2012-09-09T06:22:25.703 回答