/**@class android.app.FragmentHostCallback @extends android.app.FragmentContainer Integration points with the Fragment host. <p> Fragments may be hosted by any object; such as an {@link android.app.Activity}. In order to host fragments, implement {@link android.app.FragmentHostCallback}, overriding the methods applicable to the host. @deprecated Use the <a href="{@docRoot}tools/extras/support-library.html">Support Library</a> {@link android.support.v4.app.FragmentHostCallback} */ var FragmentHostCallback = { /**Print internal state into the given stream. @param {String} prefix Desired prefix to prepend at each line of output. @param {Object {FileDescriptor}} fd The raw file descriptor that the dump is being sent to. @param {Object {PrintWriter}} writer The PrintWriter to which you should dump your state. This will be closed for you after you return. @param {Object {java.lang.String[]}} args additional arguments to the dump request. */ onDump : function( ) {}, /**Return {@code true} if the fragment's state needs to be saved. */ onShouldSaveFragmentState : function( ) {}, /**Return a {@link LayoutInflater}. See {@link android.app.Activity#getLayoutInflater()}. */ onGetLayoutInflater : function( ) {}, /**Return {@code true} if the FragmentManager's LayoutInflaterFactory should be used. */ onUseFragmentManagerInflaterFactory : function( ) {}, /**Return the object that's currently hosting the fragment. If a {@link android.app.Fragment} is hosted by a {@link android.app.Activity}, the object returned here should be the same object returned from {@link android.app.Fragment#getActivity()}. */ onGetHost : function( ) {}, /**Invalidates the activity's options menu. See {@link android.app.Activity#invalidateOptionsMenu()} */ onInvalidateOptionsMenu : function( ) {}, /**Starts a new {@link android.app.Activity} from the given fragment. See {@link android.app.Activity#startandroid.app.ActivityForResult(Intent, int)}. */ onStartActivityFromFragment : function( ) {}, /** @hide Starts a new {@link Activity} from the given fragment. See {@link Activity#startActivityForResult(Intent, int)}. */ onStartActivityAsUserFromFragment : function( ) {}, /**Starts a new {@link IntentSender} from the given fragment. See {@link android.app.Activity#startIntentSender(IntentSender, Intent, int, int, int, Bundle)}. */ onStartIntentSenderFromFragment : function( ) {}, /**Requests permissions from the given fragment. See {@link android.app.Activity#requestPermissions(String[], int)} */ onRequestPermissionsFromFragment : function( ) {}, /**Return {@code true} if there are window animations. */ onHasWindowAnimations : function( ) {}, /**Return the window animations. */ onGetWindowAnimations : function( ) {}, /**Called when a {@link android.app.Fragment} is being attached to this host, immediately after the call to its {@link android.app.Fragment#onAttach(Context)} method and before {@link android.app.Fragment#onCreate(Bundle)}. */ onAttachFragment : function( ) {}, /** */ onFindViewById : function( ) {}, /** */ onHasView : function( ) {}, };