我有一个Android小部件(扩展AppWidgetProvider
类),我正在尝试从服务侦听器中访问应用程序上下文。我需要访问上下文,以便我可以更改应用程序壁纸。这是我得到的错误:Cannot refer to a non-final variable context inside an inner class defined in a different method
。我尝试了建议的修复程序将修改器上下文更改为Final,但我创建的Bitmap返回null。有人可以建议适当的方法来处理这个问题吗?以下是代码片段:
private void startWallpaperService(Context context) {
Intent wpIntent = new Intent(context, Wallpaper_Service.class);
context.startService(wpIntent);
Wallpaper_Service wpSrv = Wallpaper_Service.getService();
if(wpSrv != null) {
Log.i(TAG, "Wallpaper Service is not null");
Wallpaper_Service.repetitionInterval=30*1000;
wpSrv.setWallpaperListener(new Wallpaper_Service.WallpaperListener() {
@Override
public void onWallpaperUpdate(int imageId) {
if(wpm == null)
Log.w(TAG, "wpm or context is null");
else {
Bitmap background = BitmapFactory.decodeResource(context.getResources(), R.drawable.image1); // I get a syntax error here
if(background==null){
Log.w(TAG, "background is null");
}else{
try {
wpm.setBitmap(background);
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
});
} else {
Log.e(TAG, "Wallpaper Service failed");
}
}
答案 0 :(得分:2)
您是否可以在方法的第三行创建最终的应用程序上下文实例,如:
final Context ctx = context.getApplicationContext();
或
final Context ctx = context;
我认为你现在可以在内部方法减速中使用“ctx”。
这听起来像是java语法限制,而不是代码问题。
希望这有帮助。
-serkan
答案 1 :(得分:1)
在95%的情况下,总是在Listener中,您可以直接使用getApplicationContext()来获取上下文。
如果您需要获取系统资源的上下文,请使用
Resources.getSystem().getString(R.string.somestuffofmyown)
您可以在应用程序的任何位置使用它!