[android] Fix bookmark edits not updating in place page on screen rotation #10260

Open
savsch wants to merge 1 commit from savsch/fix/android-pp-bookmark-edit-issue2418 into master
2 changed files with 9 additions and 1 deletions

View file

@ -181,6 +181,14 @@ public class EditBookmarkFragment extends BaseMwmDialogFragment implements View.
}
}
@Override
public void onAttach(@NonNull Context context)
{
super.onAttach(context);
if (mListener == null && getParentFragment() instanceof EditBookmarkListener)
Review

Could you please add a comment explaining why this is necessary.

Also I wonder why there is no issue with "lost" listener when a parent is BookmarksListFragment

Could you please add a comment explaining why this is necessary. Also I wonder why there is no issue with "lost" listener when a parent is BookmarksListFragment
savsch commented 2025-03-01 22:31:21 +00:00 (Migrated from github.com)
Review

Sorry to keep you waiting; been very busy the last few days.


why there is no issue with "lost" listener when a parent is BookmarksListFragment

BookmarkListActivity has a configChanges="orientation|..." unlike MwmActivity where the issue occurs.


Also, now that I think about it a bit more, I shouldn't have resorted to the onAttach workaround.

There's an arguably cleaner way to fix this:

PlacePageBookmarkFragment.java
@@ -19,6 +19,7 @@ import androidx.annotation.NonNull;
 import androidx.annotation.Nullable;
 import androidx.fragment.app.Fragment;
 import androidx.fragment.app.FragmentActivity;
+import androidx.fragment.app.FragmentFactory;
 import androidx.lifecycle.Observer;
 import androidx.lifecycle.ViewModelProvider;
 import app.organicmaps.R;
@@ -120,6 +121,25 @@ public class PlacePageBookmarkFragment extends Fragment implements View.OnClickL
     }
   }
 
+  @Override
+  public void onCreate(@Nullable Bundle savedInstanceState)
+  {
+    // Custom FragmentFactory to prevent EditBookmarkFragment's mListener
+    // from becoming null on configuration changes
+    getChildFragmentManager().setFragmentFactory(new FragmentFactory()
+    {
+      @NonNull
+      @Override
+      public Fragment instantiate(@NonNull ClassLoader classLoader, @NonNull String className)
+      {
+        Class<? extends Fragment> fragmentClass = loadFragmentClass(classLoader, className);
+        Fragment fragment = super.instantiate(classLoader, className);
+        if (fragmentClass == EditBookmarkFragment.class)
+          ((EditBookmarkFragment) fragment).setEditBookmarkListener(PlacePageBookmarkFragment.this);
+        return fragment;
+      }
+    });
+    super.onCreate(savedInstanceState);
+  }
+
   @Override
   public void onClick(View v)
   {
@@ -127,7 +147,7 @@ public class PlacePageBookmarkFragment extends Fragment implements View.OnClickL
     EditBookmarkFragment.editBookmark(currentBookmark.getCategoryId(),
                                       currentBookmark.getBookmarkId(),
                                       activity,
-                                      activity.getSupportFragmentManager(),
+                                      getChildFragmentManager(),
                                       PlacePageBookmarkFragment.this);
   }
 

Should I push this instead?

Sorry to keep you waiting; been very busy the last few days. --- > why there is no issue with "lost" listener when a parent is BookmarksListFragment `BookmarkListActivity` has a `configChanges="orientation|..."` unlike `MwmActivity` where the issue occurs. --- Also, now that I think about it a bit more, I shouldn't have resorted to the `onAttach` workaround. There's an arguably cleaner way to fix this: ```diff PlacePageBookmarkFragment.java @@ -19,6 +19,7 @@ import androidx.annotation.NonNull; import androidx.annotation.Nullable; import androidx.fragment.app.Fragment; import androidx.fragment.app.FragmentActivity; +import androidx.fragment.app.FragmentFactory; import androidx.lifecycle.Observer; import androidx.lifecycle.ViewModelProvider; import app.organicmaps.R; @@ -120,6 +121,25 @@ public class PlacePageBookmarkFragment extends Fragment implements View.OnClickL } } + @Override + public void onCreate(@Nullable Bundle savedInstanceState) + { + // Custom FragmentFactory to prevent EditBookmarkFragment's mListener + // from becoming null on configuration changes + getChildFragmentManager().setFragmentFactory(new FragmentFactory() + { + @NonNull + @Override + public Fragment instantiate(@NonNull ClassLoader classLoader, @NonNull String className) + { + Class<? extends Fragment> fragmentClass = loadFragmentClass(classLoader, className); + Fragment fragment = super.instantiate(classLoader, className); + if (fragmentClass == EditBookmarkFragment.class) + ((EditBookmarkFragment) fragment).setEditBookmarkListener(PlacePageBookmarkFragment.this); + return fragment; + } + }); + super.onCreate(savedInstanceState); + } + @Override public void onClick(View v) { @@ -127,7 +147,7 @@ public class PlacePageBookmarkFragment extends Fragment implements View.OnClickL EditBookmarkFragment.editBookmark(currentBookmark.getCategoryId(), currentBookmark.getBookmarkId(), activity, - activity.getSupportFragmentManager(), + getChildFragmentManager(), PlacePageBookmarkFragment.this); } ``` Should I push this instead?
Review

IDK, it looks more complex for sure :)

It'd be great for more knowledgeable @organicmaps/android folks to have a look

IDK, it looks more complex for sure :) It'd be great for more knowledgeable @organicmaps/android folks to have a look
mListener = (EditBookmarkListener) getParentFragment();
}
private void initToolbar(View view)
{
Toolbar toolbar = view.findViewById(R.id.toolbar);

View file

@ -127,7 +127,7 @@ public class PlacePageBookmarkFragment extends Fragment implements View.OnClickL
EditBookmarkFragment.editBookmark(currentBookmark.getCategoryId(),
currentBookmark.getBookmarkId(),
activity,
activity.getSupportFragmentManager(),
getChildFragmentManager(),
PlacePageBookmarkFragment.this);
}