Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2e22cec8 authored by Todd Kennedy's avatar Todd Kennedy Committed by Android Git Automerger
Browse files

am 3266f60b: Merge "Call Activity#onAttachFragment()" into mnc-dev

* commit '3266f60b':
  Call Activity#onAttachFragment()
parents ca4c2592 3266f60b
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -4495,6 +4495,7 @@ package android.app {
  public abstract class FragmentHostCallback extends android.app.FragmentContainer {
    ctor public FragmentHostCallback(android.content.Context, android.os.Handler, int);
    method public void onAttachFragment(android.app.Fragment);
    method public void onDump(java.lang.String, java.io.FileDescriptor, java.io.PrintWriter, java.lang.String[]);
    method public android.view.View onFindViewById(int);
    method public abstract E onGetHost();
+1 −0
Original line number Diff line number Diff line
@@ -4587,6 +4587,7 @@ package android.app {
  public abstract class FragmentHostCallback extends android.app.FragmentContainer {
    ctor public FragmentHostCallback(android.content.Context, android.os.Handler, int);
    method public void onAttachFragment(android.app.Fragment);
    method public void onDump(java.lang.String, java.io.FileDescriptor, java.io.PrintWriter, java.lang.String[]);
    method public android.view.View onFindViewById(int);
    method public abstract E onGetHost();
+5 −0
Original line number Diff line number Diff line
@@ -6498,6 +6498,11 @@ public class Activity extends ContextThemeWrapper
            return (w == null) ? 0 : w.getAttributes().windowAnimations;
        }

        @Override
        public void onAttachFragment(Fragment fragment) {
            Activity.this.onAttachFragment(fragment);
        }

        @Nullable
        @Override
        public View onFindViewById(int id) {
+6 −0
Original line number Diff line number Diff line
@@ -1314,6 +1314,12 @@ public class Fragment implements ComponentCallbacks2, OnCreateContextMenuListene
                    com.android.internal.R.styleable.Fragment_fragmentAllowReturnTransitionOverlap, true);
        }
        a.recycle();

        final Activity hostActivity = mHost == null ? null : mHost.getActivity();
        if (hostActivity != null) {
            mCalled = false;
            onInflate(hostActivity, attrs, savedInstanceState);
        }
    }

    /**
+8 −9
Original line number Diff line number Diff line
@@ -23,7 +23,6 @@ import android.content.Intent;
import android.os.Bundle;
import android.os.Handler;
import android.util.ArrayMap;
import android.util.AttributeSet;
import android.view.LayoutInflater;
import android.view.View;

@@ -140,6 +139,14 @@ public abstract class FragmentHostCallback<E> extends FragmentContainer {
        return mWindowAnimations;
    }

    /**
     * Called when a {@link Fragment} is being attached to this host, immediately
     * after the call to its {@link Fragment#onAttach(Context)} method and before
     * {@link Fragment#onCreate(Bundle)}.
     */
    public void onAttachFragment(Fragment fragment) {
    }

    @Nullable
    @Override
    public View onFindViewById(int id) {
@@ -187,14 +194,6 @@ public abstract class FragmentHostCallback<E> extends FragmentContainer {
        }
    }

    void onFragmentInflate(Fragment fragment, AttributeSet attrs, Bundle savedInstanceState) {
        fragment.onInflate(mContext, attrs, savedInstanceState);
    }

    void onFragmentAttach(Fragment fragment) {
        fragment.onAttach(mContext);
    }

    void doLoaderStart() {
        if (mLoadersStarted) {
            return;
Loading