Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

import android.content.Context;

import android.util.DisplayMetrics;

import android.view.WindowManager;

public class Main {
    /**
     * This method to get screen size.
     * 
     * @param context
     * @return window manager instance which contains width and height of the
     *         screen
     */
    public static DisplayMetrics getScreenSize(Context context) {
        // TODO Auto-generated method stub
        DisplayMetrics dm = new DisplayMetrics();
        WindowManager wm = (WindowManager) context.getSystemService(Context.WINDOW_SERVICE);
        wm.getDefaultDisplay().getMetrics(dm);
        return dm;
    }
}