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.view.LayoutInflater;
import android.view.View;

public class Main {
    public static View getInflateView(Context context, int layoutID) {
        return LayoutInflater.from(context).inflate(layoutID, null, false);
    }
}