Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

import android.graphics.Rect;

public class Main {
    private static Rect getScreenRegion(int width, int height) {
        return new Rect(0, 0, width, height);
    }
}