Get the screen width - Android User Interface

Android examples for User Interface:Screen Size

Description

Get the screen width

Demo Code


//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;
    }
}

Related Tutorials