From 5105805e068a3127d25dd950ad0dd271d1289c94 Mon Sep 17 00:00:00 2001 From: alex Date: Sat, 18 Nov 2017 23:38:26 +0200 Subject: [PATCH] Do not add header without notes; extract code to method --- .../osmand/plus/audionotes/NotesFragment.java | 56 +++++++++---------- 1 file changed, 28 insertions(+), 28 deletions(-) diff --git a/OsmAnd/src/net/osmand/plus/audionotes/NotesFragment.java b/OsmAnd/src/net/osmand/plus/audionotes/NotesFragment.java index 5e8c5f76db..ea3b620e38 100644 --- a/OsmAnd/src/net/osmand/plus/audionotes/NotesFragment.java +++ b/OsmAnd/src/net/osmand/plus/audionotes/NotesFragment.java @@ -30,7 +30,7 @@ import net.osmand.plus.GPXUtilities; import net.osmand.plus.GPXUtilities.GPXFile; import net.osmand.plus.GPXUtilities.WptPt; import net.osmand.plus.OsmandPlugin; -import net.osmand.plus.OsmandSettings; +import net.osmand.plus.OsmandSettings.NotesSortByMode; import net.osmand.plus.R; import net.osmand.plus.activities.ActionBarProgressActivity; import net.osmand.plus.activities.MapActivity; @@ -178,39 +178,39 @@ public class NotesFragment extends OsmAndListFragment { private List createItemsList() { List recs = new LinkedList<>(plugin.getAllRecordings()); List res = new LinkedList<>(); - OsmandSettings settings = getMyApplication().getSettings(); - if (settings.NOTES_SORT_BY_MODE.get().isByDate()) { - res.add(NotesAdapter.TYPE_DATE_HEADER); - res.addAll(sortItemsByDateDescending(recs)); - } else if (settings.NOTES_SORT_BY_MODE.get().isByType()) { - List audios = new LinkedList<>(); - List photos = new LinkedList<>(); - List videos = new LinkedList<>(); - for (Recording rec : recs) { - if (rec.isAudio()) { - audios.add(rec); - } else if (rec.isPhoto()) { - photos.add(rec); - } else { - videos.add(rec); + if (!recs.isEmpty()) { + NotesSortByMode sortByMode = getMyApplication().getSettings().NOTES_SORT_BY_MODE.get(); + if (sortByMode.isByDate()) { + res.add(NotesAdapter.TYPE_DATE_HEADER); + res.addAll(sortItemsByDateDescending(recs)); + } else if (sortByMode.isByType()) { + List audios = new LinkedList<>(); + List photos = new LinkedList<>(); + List videos = new LinkedList<>(); + for (Recording rec : recs) { + if (rec.isAudio()) { + audios.add(rec); + } else if (rec.isPhoto()) { + photos.add(rec); + } else { + videos.add(rec); + } } - } - if (!audios.isEmpty()) { - res.add(NotesAdapter.TYPE_AUDIO_HEADER); - res.addAll(audios); - } - if (!photos.isEmpty()) { - res.add(NotesAdapter.TYPE_PHOTO_HEADER); - res.addAll(photos); - } - if (!videos.isEmpty()) { - res.add(NotesAdapter.TYPE_VIDEO_HEADER); - res.addAll(videos); + addToResIfNotEmpty(res, audios, NotesAdapter.TYPE_AUDIO_HEADER); + addToResIfNotEmpty(res, photos, NotesAdapter.TYPE_PHOTO_HEADER); + addToResIfNotEmpty(res, videos, NotesAdapter.TYPE_VIDEO_HEADER); } } return res; } + private void addToResIfNotEmpty(List res, List recs, int header) { + if (!recs.isEmpty()) { + res.add(header); + res.addAll(recs); + } + } + private NotesAdapterListener createAdapterListener() { return new NotesAdapterListener() {