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

Commit 8cf9bb61 authored by Alison Cichowlas's avatar Alison Cichowlas Committed by Android (Google) Code Review
Browse files

Merge "Do not restart activity when pinned set changes - just re-sort."

parents 10197b12 bc290816
Loading
Loading
Loading
Loading
+11 −4
Original line number Diff line number Diff line
@@ -859,13 +859,20 @@ public class ChooserActivity extends ResolverActivity implements
        return new PackageMonitor() {
            @Override
            public void onSomePackagesChanged() {
                handlePackagesChanged();
            }
        };
    }

    /**
     * Update UI to reflect changes in data.
     */
    public void handlePackagesChanged() {
        // TODO(arangelov): Dispatch this to all adapters when we have the helper methods
        // in a follow-up CL
        mChooserMultiProfilePagerAdapter.getActiveListAdapter().handlePackagesChanged();
        updateProfileViewButton();
    }
        };
    }

    private void onCopyButtonClicked(View v) {
        Intent targetIntent = getTargetIntent();
+1 −1
Original line number Diff line number Diff line
@@ -116,7 +116,7 @@ public class ResolverTargetActionsDialogFragment extends DialogFragment
                pinComponent(mTargetInfos.get(which).getResolvedComponentName());
            }
            // Force the chooser to requery and resort things
            getActivity().recreate();
            ((ChooserActivity) getActivity()).handlePackagesChanged();
        } else {
            // Last item in dialog is App Info
            Intent in = new Intent().setAction(Settings.ACTION_APPLICATION_DETAILS_SETTINGS)