Here you can find the source of getScreenWidth(Display display)
public static int getScreenWidth(Display display)
//package com.java2s; import android.graphics.Point; import android.view.Display; public class Main { public static int getScreenWidth(Display display) { Point size = getDisplaySize(display); return size.x; }/*from w w w . ja v a 2 s. co m*/ public static Point getDisplaySize(Display display) { Point size = new Point(); display.getSize(size); return size; } }