[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
savsch commented 2025-02-15 12:27:04 +00:00 (Migrated from github.com)

Fixes #2418

The callback listener supposed to be invoked after bookmark edits (mListener in EditBookmarkFragment) was made null on configuration changes. This change fixes the issue by leveraging the fact that the parent fragment (for cases when the issue occurs, i.e. PlacePageBookmarkFragment) itself implements the listener.

On master branch

https://github.com/user-attachments/assets/74f786e1-fbed-4bab-9efe-fae4d45985fc

On this branch

https://github.com/user-attachments/assets/77a27cd3-341c-4cbb-840d-7cec117c84a5

Fixes #2418 The callback listener supposed to be invoked after bookmark edits (`mListener` in `EditBookmarkFragment`) was made null on configuration changes. This change fixes the issue by leveraging the fact that the parent fragment (for cases when the issue occurs, i.e. `PlacePageBookmarkFragment`) itself implements the listener. ### On master branch https://github.com/user-attachments/assets/74f786e1-fbed-4bab-9efe-fae4d45985fc ### On this branch https://github.com/user-attachments/assets/77a27cd3-341c-4cbb-840d-7cec117c84a5
pastk approved these changes 2025-02-22 11:52:37 +00:00
pastk left a comment
Member

Thanks for the fix!!

Thanks for the fix!!
pastk reviewed 2025-02-22 12:08:34 +00:00
@ -184,0 +185,4 @@
public void onAttach(@NonNull Context context)
{
super.onAttach(context);
if (mListener == null && getParentFragment() instanceof EditBookmarkListener)

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
rtsisyk reviewed 2025-02-28 20:03:29 +00:00
rtsisyk left a comment
Owner

Please add a comment at least.

Please add a comment at least.
savsch (Migrated from github.com) reviewed 2025-03-01 22:31:21 +00:00
@ -184,0 +185,4 @@
public void onAttach(@NonNull Context context)
{
super.onAttach(context);
if (mListener == null && getParentFragment() instanceof EditBookmarkListener)
savsch (Migrated from github.com) commented 2025-03-01 22:31:21 +00:00

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?
pastk reviewed 2025-03-02 05:09:31 +00:00
@ -184,0 +185,4 @@
public void onAttach(@NonNull Context context)
{
super.onAttach(context);
if (mListener == null && getParentFragment() instanceof EditBookmarkListener)

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
This repo is archived. You cannot comment on pull requests.
No reviewers
No labels
Accessibility
Accessibility
Address
Address
Android
Android
Android Auto
Android Auto
Android Automotive (AAOS)
Android Automotive (AAOS)
API
API
AppGallery
AppGallery
AppStore
AppStore
Battery and Performance
Battery and Performance
Blocker
Blocker
Bookmarks and Tracks
Bookmarks and Tracks
Borders
Borders
Bug
Bug
Build
Build
CarPlay
CarPlay
Classificator
Classificator
Community
Community
Core
Core
CrashReports
CrashReports
Cycling
Cycling
Desktop
Desktop
DevEx
DevEx
DevOps
DevOps
dev_sandbox
dev_sandbox
Directions
Directions
Documentation
Documentation
Downloader
Downloader
Drape
Drape
Driving
Driving
Duplicate
Duplicate
Editor
Editor
Elevation
Elevation
Enhancement
Enhancement
Epic
Epic
External Map Datasets
External Map Datasets
F-Droid
F-Droid
Fonts
Fonts
Frequently User Reported
Frequently User Reported
Fund
Fund
Generator
Generator
Good first issue
Good first issue
Google Play
Google Play
GPS
GPS
GSoC
GSoC
iCloud
iCloud
Icons
Icons
iOS
iOS
Legal
Legal
Linux Desktop
Linux Desktop
Linux packaging
Linux packaging
Linux Phone
Linux Phone
Mac OS
Mac OS
Map Data
Map Data
Metro
Metro
Navigation
Navigation
Need Feedback
Need Feedback
Night Mode
Night Mode
NLnet 2024-06-281
NLnet 2024-06-281
No Feature Parity
No Feature Parity
Opening Hours
Opening Hours
Outdoors
Outdoors
POI Info
POI Info
Privacy
Privacy
Public Transport
Public Transport
Raw Idea
Raw Idea
Refactoring
Refactoring
Regional
Regional
Regression
Regression
Releases
Releases
RoboTest
RoboTest
Route Planning
Route Planning
Routing
Routing
Ruler
Ruler
Search
Search
Security
Security
Styles
Styles
Tests
Tests
Track Recording
Track Recording
Translations
Translations
TTS
TTS
UI
UI
UX
UX
Walk Navigation
Walk Navigation
Watches
Watches
Web
Web
Wikipedia
Wikipedia
Windows
Windows
Won't fix
Won't fix
World Map
World Map
No milestone
No project
No assignees
3 participants
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference: organicmaps/organicmaps-tmp#10260
No description provided.