blob: b9fbc7681457484ec44cfb31ae6d56eef29d735a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
package cgeo.geocaching.loaders;
import cgeo.geocaching.DataStore;
import cgeo.geocaching.Intents;
import cgeo.geocaching.SearchResult;
import cgeo.geocaching.location.Geopoint;
import cgeo.geocaching.settings.Settings;
import android.content.Context;
import android.os.Bundle;
public class OfflineGeocacheListLoader extends AbstractSearchLoader {
private final int listId;
private final Geopoint searchCenter;
public OfflineGeocacheListLoader(final Context context, final Geopoint searchCenter, final int listId) {
super(context);
this.searchCenter = searchCenter;
this.listId = listId;
}
@Override
public SearchResult runSearch() {
return DataStore.getBatchOfStoredCaches(searchCenter, Settings.getCacheType(), listId);
}
/**
* @return the bundle needed for querying the LoaderManager for the offline list with the given id
*/
public static Bundle getBundleForList(final int listId) {
final Bundle bundle = new Bundle();
bundle.putInt(Intents.EXTRA_LIST_ID, listId);
return bundle;
}
}
|