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 KidsFragment extends AbstractWebContentFragment {
public static KidsFragment newInstance() {
Bundle args = new Bundle();
KidsFragment fragment = new KidsFragment();
fragment.setArguments(args);
return fragment;
}
@Nullable
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
return inflater.inflate(R.layout.content_kids, container, false);
}
}