I tried to use following code to get screen width and height in android app development:
Display display = getWindowManager().getDefaultDisplay();
int screenWidth = display.getWidth();
int screenHeight = display.getHeight();
but I got NullPointerException for my display, why? how to get screen width and height then?