Android examples for android.app:Screen
get Screen Width via Resources
import android.content.res.Resources; public class Main{ public static int getScreenWidth() { return Resources.getSystem().getDisplayMetrics().widthPixels; }//from www . ja va 2 s. c om }