Java tutorial
//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); } }