2011年1月9日 星期日

detect the screen size or resolution (eng.)

If you want to detect your phone resolution in Activity, you can try the following code:

Display display = ((WindowManager) getSystemService(Context.WINDOW_SERVICE)).getDefaultDisplay();
int width = display.getWidth();
int height = display.getHeight();

沒有留言:

張貼留言