aboutsummaryrefslogtreecommitdiffstats
path: root/main/src/cgeo/geocaching/NavigateAnyPointActivity.java
Commit message (Collapse)AuthorAgeFilesLines
* new: show cache name in title when searching around itBananeweizen2015-03-011-1/+1
|
* Use GPS when compass is disabled or absentSamuel Tardieu2015-01-011-3/+4
| | | | Work on #4548.
* Use Scheduler and helper for consecutive action on different threadsSamuel Tardieu2014-11-281-8/+9
|
* fix #4332: no history when navigate via compassSamuel Tardieu2014-11-261-23/+27
|
* Remove used-once interface IGeoDataSamuel Tardieu2014-11-231-2/+2
| | | | | IGeoData was only implemented by the GeoData class. We can as well use it directly.
* IGeoData#getCoords() can never be nullSamuel Tardieu2014-11-231-15/+2
|
* rename packageBananeweizen2014-11-021-3/+3
| | | | The package not only contains the GeoPoint definition, but other location related classes, too.
* put db access at 1 place into async taskYu Lin2014-10-201-8/+12
|
* fix #4359: imperial units checkbox not always correctSamuel Tardieu2014-09-151-2/+2
| | | | | | | | This has been fixed by initializing the key to its default value instead of just the checkbox. Also, better names have been used throughout the settings to reflect the fact that "units" meant "use imperial units". It was used in both ways, including the wrong way while migrating the settings.
* Name ignored catch parameter as suchSamuel Tardieu2014-09-091-3/+3
|
* Include exception stack trace in error messageSamuel Tardieu2014-09-091-1/+1
|
* Navigation action for navigate any point.rsudev2014-08-181-2/+20
| | | | - Fix inconsisten action item order as well
* refactoring: reduce package cyclesBananeweizen2014-07-201-1/+1
|
* fix lint warning: layout inflation rootBananeweizen2014-06-291-41/+41
|
* fix #3871: provide up navigationBananeweizen2014-05-241-2/+1
|
* fix #3877: hide menu items instead of disabling themBananeweizen2014-05-221-1/+1
| | | | We probably need to do further rework on the menus, but this fixes at least the style guideline issue.
* Make Fragment implementation more conforming to the coding guidelines. ↵Arne Schwabe2014-05-201-10/+9
| | | | Fixes crash on rotation
* Convert DateDialog and CoordinateInputDialog to DialogFragments, closes #3852Arne Schwabe2014-05-191-2/+2
|
* Implement ActionBar using AppCompat in cgeoArne Schwabe2014-05-171-3/+3
| | | | | | | | | | | | | | | | | | | | | | | This a first version of an ActionBar implementation with following properties: - The application should be usuable (there still might be bugs left from the conversation to Action) - Provides a more modern feeling on all devices - gets rid of the "dots of shame" on Android 3.0+ devices - The Maps classes MUST inherit from Activity instead of ActionBarActivity. There these classes use the old ActionBar on Android 2.3 devices and the real ActionBar on 3.0+ - This can be fixed when cgeo is ported to Google Maps API v2.0 API which usesFragment - The Dialog classes (CachePopup and WaypointPopup) have been converted to DialogFragments - The AppCombat themes provide no Theme.Dialog theme - this will later ease using these Fragment in other Activities - Use an almost empty activity which just shows the DialogFragment - Use the 'old' ActionBar but which overflow menu button to fit into Holo Design Style - Using a real ActionBar for Dialogs is not really support by Android and trying to force the frame into showing an Actionbar on a dialog leeds to strange bugs/effects - Most of the icon are still the Android 2.3 Menu Icon. These need to be replaced with Holo Style Icons - for most menu icon the ifRoom and/or withText attributes should be reviewed and set - The ActionBar of the main Activity is transparent. This is more or less by accident but looks good - Review Up Action of activities. Is going back to Main Activity always the semantically right thing to do? - Shortpress/Longpress on the Actionbars Compass Icon for primary/secondary Navigation clashes the normal ActionBar behaviour of long pressing to show the text of the action This commit contains many fixes and suggestions from rsudev
* remove methods invoking only super methodMichael Keppler2014-04-231-6/+1
|
* Allow subscription to either location or direction dataSamuel Tardieu2014-03-261-2/+2
| | | | | | | | The forced union of both information is not appropriate in several activities where only GPS data is needed, or where direction data update less components than location data (such as cache lists). This is part of work on #3680.
* Automatically pair subscriptions in onResume/onPauseSamuel Tardieu2014-03-101-3/+1
|
* Always use a combined geodata and direction providerSamuel Tardieu2014-03-061-3/+3
|
* refactoring: create cgeo.geocaching.sensors packageSamuel Tardieu2014-03-061-1/+2
|
* refactoring: simplify confirmation dialogs, remove duplicate codeBananeweizen2013-12-191-1/+2
|
* refactor: upgrade to butterknife 4Bananeweizen2013-11-271-3/+3
|
* fix #3357: crash in any destinationBananeweizen2013-10-141-6/+9
|
* refactoring: cgeocaches -> CacheListActivitySamuel Tardieu2013-09-131-1/+1
|
* refactoring: cgData -> DataStoreSamuel Tardieu2013-09-131-4/+4
|
* refactoring: findbugs cleanupBananeweizen2013-08-261-2/+2
| | | * don't catch raw exceptions
* refactoring: more findbugs cleanupBananeweizen2013-08-181-16/+8
|
* refactoring: make formatter work without contextBananeweizen2013-07-311-2/+2
|
* refactoring: extract level of static maps to constantBananeweizen2013-07-191-1/+1
| | | * includes further checkstyle cleanup
* Implements #750, use preference activitykoem2013-07-091-5/+7
|
* refactoring: use activity names for layoutsBananeweizen2013-06-091-3/+3
|
* refactoring: reduce duplicated codeBananeweizen2013-06-081-3/+3
|
* #2684: Use view injection instead of view.findById()Bananeweizen2013-05-311-32/+29
|
* refactoring: use menu resources instead of codeBananeweizen2013-05-101-20/+10
|
* Merge remote-tracking branch 'origin/release'Bananeweizen2013-05-101-45/+39
|\
| * refactoring: view holderBananeweizen2013-05-101-18/+33
| |
| * refactoring: code cleanupBananeweizen2013-05-091-26/+13
| |
| * fix #1781: Remove help functionBananeweizen2013-05-091-4/+0
| |
| * #2684: use view injection libraryBananeweizen2013-05-011-5/+1
| | | | | | | | * If you have compile errors after pulling, please consult the issue on github.
* | fix #2706: exception in list adapterBananeweizen2013-05-101-0/+7
|/
* code cleanupBananeweizen2013-02-241-0/+565
* rename several lower case classes * more strict visibility modifiers * Lint warnings * style warnings