I am trying to use getWindowManager() inside BroadcastReceiver and I get this error:
“The method getWindowManager() is undefined for the type MyReceiver“
I just need to get display.getWidth() and display.getHeight()
Any hints? Thanks a lot.
getWindowManager()is a method onActivity. You cannot use this method. Please usegetSystemService()to retrieve aWindowManager, as is described in theWindowManagerdocumentation.