Here you can find the source of getInstance(Context context)
public static synchronized LayoutInflater getInstance(Context context)
//package com.java2s; import android.content.Context; import android.view.LayoutInflater; public class Main { static LayoutInflater mInstance; public static synchronized LayoutInflater getInstance(Context context) { if (mInstance == null) mInstance = LayoutInflater.from(context); return mInstance; }//from ww w . jav a2 s . co m }