aboutsummaryrefslogtreecommitdiffstats
path: root/main/src/cgeo/geocaching/NavigateAnyPointActivity.java
Commit message (Collapse)AuthorAgeFilesLines
* 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