What does need to be imported or how can I call the Layout inflater in places other than activity?
public static void method(Context context){ //this doe
Using context object you can get LayoutInflater from following code
LayoutInflater inflater = (LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);