我正在尝试在 android 中获取当前运行上下文,我尝试使用:
<application android:name="com.xyz.MyApplication">
</application>
public class MyApplication extends Application
{
private static Context context;
public void onCreate()
{
super.onCreate();
MyApplication.context = getApplicationContext();
}
public static Context getAppContext()
{
return MyApplication.context;
}
}
当我尝试使用MyApplication.getAppContext()
时,它给了我错误
AndroidRuntime(14421): android.view.WindowManager$BadTokenException: 无法添加窗口 -- 令牌 null 不适用于应用程序