如何在我自己的方法或静态块中获取上下文?

时间:2013-05-15 07:59:04

标签: android widget android-context appwidgetprovider

我在AppWidgetProvider班。我想在任何回调方法之前调用静态块,但我需要静态块中的上下文。我怎么能得到它?

以下是我的代码:

public class widgetClass extends AppWidgetProvider {

    static
{
// here i want the context

}

    @Override
public void onUpdate(Context context, AppWidgetManager appWidgetManager,
        int[] appWidgetIds){
}

1 个答案:

答案 0 :(得分:1)

覆盖onEnabled而不是使用静态阻止。