package com.liferay.ldxdemo.fragments; import android.os.Bundle; import android.support.annotation.Nullable; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import com.liferay.ldxdemo.R; /** * @author Javier Gamarra */ public class MenFragment extends AbstractWebContentFragment { public static MenFragment newInstance() { Bundle args = new Bundle(); MenFragment fragment = new MenFragment(); fragment.setArguments(args); return fragment; } @Nullable @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { return inflater.inflate(R.layout.content_men, container, false); } }