This commit is contained in:
alex 2017-12-20 23:25:24 +02:00
parent 1ba84e719a
commit bd8b497d10
2 changed files with 10 additions and 0 deletions

View file

@ -481,6 +481,15 @@ public class AudioVideoNotesPlugin extends OsmandPlugin {
return date + "" + sz + "" + getDuration(ctx, false); return date + "" + sz + "" + getDuration(ctx, false);
} }
public String getTypeWithDuration(Context ctx) {
StringBuilder res = new StringBuilder(getType(ctx));
if (isAudio() || isVideo()) {
updateInternalDescription();
res.append(", ").append(getDuration(ctx, false));
}
return res.toString();
}
public String getPlainDuration(boolean accessibilityEnabled) { public String getPlainDuration(boolean accessibilityEnabled) {
updateInternalDescription(); updateInternalDescription();
if (duration > 0) { if (duration > 0) {

View file

@ -499,6 +499,7 @@ public class NotesFragment extends OsmAndListFragment {
wpt.link = r.getFileName(); wpt.link = r.getFileName();
wpt.time = r.getFile().lastModified(); wpt.time = r.getFile().lastModified();
wpt.category = r.getSearchHistoryType(); wpt.category = r.getSearchHistoryType();
wpt.desc = r.getTypeWithDuration(getContext());
getMyApplication().getSelectedGpxHelper().addPoint(wpt, file); getMyApplication().getSelectedGpxHelper().addPoint(wpt, file);
} }
} }