Android examples for User Interface:Screen Size
Get the screen width
//package com.java2s; import android.content.res.Resources; public class Main { /***/*from w w w.jav a 2 s. co m*/ * Get the screen width * @return The screen width in pixel */ public static int getScreenWidth() { return Resources.getSystem().getDisplayMetrics().widthPixels; } }