Java tutorial
//package com.java2s; import android.content.Context; import android.view.Display; import android.view.WindowManager; public class Main { public static Display getScreenDisplay(Context context) { WindowManager wm; try { wm = (WindowManager) context.getSystemService(Context.WINDOW_SERVICE); return wm.getDefaultDisplay(); } catch (Exception e) { e.printStackTrace(); } return null; } }