package org.intermine.app.fragment; /* * Copyright (C) 2015 InterMine * * This code may be freely distributed and modified under the * terms of the GNU Lesser General Public Licence. This should * be distributed with the code. See the LICENSE file for more * information or http://www.gnu.org/copyleft/lesser.html. * */ import android.content.Context; import android.os.Bundle; import android.support.v4.app.Fragment; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import org.intermine.app.R; import org.intermine.app.activity.MainActivity; /** * @author Daria Komkova <Daria_Komkova @ hotmail.com> */ public class InfoFragment extends Fragment { public InfoFragment() { } public static InfoFragment newInstance() { return new InfoFragment(); } // -------------------------------------------------------------------------------------------- // Fragment Lifecycle // -------------------------------------------------------------------------------------------- @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { return inflater.inflate(R.layout.info_fragment, container, false); } @Override public void onAttach(Context context) { super.onAttach(context); ((MainActivity) context).onSectionAttached(getString(R.string.info)); } }