Back to project page holoreader.
The source code is released under:
GNU General Public License
If you think the Android project holoreader listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package de.hdodenhof.holoreader.misc; // w w w . j a v a 2 s . c o m import android.support.v4.app.Fragment; /** * * @author Henning Dodenhof * */ public interface FragmentCallback { /** * Is called from within an RSSFragment's onViewCreated method and notifies the hosting activity about its state * * @param fragment * The calling fragment */ public void onFragmentReady(Fragment fragment); /** * * @return true if fragment is part of a dual pane layout, false if not */ public boolean isDualPane(); /** * * @param fragment * @return true if calling fragment is the primary one in the current layout */ public boolean isPrimaryFragment(Fragment fragment); }