If you want to inflate layout (attach child layout to parent) in Fragment
Use this code
LayoutInflater inflater = (LayoutInflater) getActivity()
.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
Now to Inflate child layout
View view = inflater.inflate(R.layout.layout_child, null);
Happy coding :)