Persist swipe target

This commit is contained in:
M66B 2018-10-21 14:18:03 +00:00
parent 3efd67b2cf
commit 94ede60603
1 changed files with 4 additions and 1 deletions

View File

@ -159,6 +159,8 @@ public class FragmentMessages extends FragmentEx {
fab = view.findViewById(R.id.fab);
final SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(getContext());
if (folder >= 0)
swipeTarget = prefs.getLong("swipe." + folder, -1);
// Wire controls
@ -835,6 +837,8 @@ public class FragmentMessages extends FragmentEx {
@Override
public boolean onMenuItemClick(final MenuItem target) {
swipeTarget = target.getItemId();
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(getContext());
prefs.edit().putLong("swipe." + folder, swipeTarget).apply();
return true;
}
});
@ -842,7 +846,6 @@ public class FragmentMessages extends FragmentEx {
popupMenu.show();
}
}.load(this, args);
}
private void loadMessages() {