aboutsummaryrefslogtreecommitdiffstats
path: root/main/src/cgeo/geocaching/activity
Commit message (Collapse)AuthorAgeFilesLines
* lint fixesBananeweizen2014-06-011-3/+7
|
* Merge pull request #3901 from schwabe/internal_webviewBananeweizen2014-05-311-0/+28
|\ | | | | Internal webview
| * Implement a small internal browser (using webview) and allow the user to ↵Arne Schwabe2014-05-241-0/+28
| | | | | | | | pick the user to select an internal/external browser if c:geo is the default of the geocaching url
* | new: contextual action bar for cache details and trackableBananeweizen2014-05-291-5/+10
| | | | | | | | | | This is surely not complete (as we still use other local context menus in the same actions), but a start for converting all context menus to contextual action bars.
* | fix: menus not updated dynamically on 2.3Bananeweizen2014-05-251-2/+7
| |
* | fix: some activities not showing dynamic titleBananeweizen2014-05-242-3/+13
| |
* | fix #3871: provide up navigationBananeweizen2014-05-244-27/+30
|/
* Merge pull request #3847 from schwabe/cgeo_nfcBananeweizen2014-05-201-0/+36
|\ | | | | Implement Android Beam (NFC Sharing) for cgeo
| * Implement Android Beam (NFC Sharing) for cgeoArne Schwabe2014-05-181-0/+36
| | | | | | | | To support direct opening of CGEO on the other device, introduce a distinction between getBrowserURL and getCgeoURL in providers.
* | Don't let the OAuth dialogs use the Dialog themeArne Schwabe2014-05-182-15/+2
|/ | | | This fixes the crash when a OAuth dialog is shown, a correct fix would to convert the OAuth dialogs to activities/DialogFragment but that is more work and can be done later.
* multiple code cleanupsBananeweizen2014-05-181-2/+1
| | | | | | | | * unused imports * remove author comment * restrict access * fix StaticMapsActivity code generation cycle (it should not contain references to classes which are generated by the annotation processor from itself)
* Implement ActionBar using AppCompat in cgeoArne Schwabe2014-05-176-38/+125
| | | | | | | | | | | | | | | | | | | | | | | 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
* Merge branch 'release' into upstreamSamuel Tardieu2014-04-131-1/+1
|\
| * fix #3761: crash when long-clicking on a value fieldSamuel Tardieu2014-04-131-1/+1
| |
* | Remove compatibility with API < 5Samuel Tardieu2014-04-011-3/+8
|/
* Use a subscription model for GeoDirHandlerSamuel Tardieu2014-03-101-0/+1
|
* Automatically pair subscriptions in onResume/onPauseSamuel Tardieu2014-03-101-0/+13
|
* refactoring: clean progress dialog handlingSamuel Tardieu2014-02-271-11/+6
|
* Merge branch 'release' into upstreamSamuel Tardieu2014-02-271-2/+2
|\
| * fix #3550: dialog don't show up the second timeSamuel Tardieu2014-02-271-2/+2
| |
* | refactoring: do not duplicate codeSamuel Tardieu2014-02-241-0/+28
| |
* | refactoring: do not duplicate codeSamuel Tardieu2014-02-241-0/+21
| |
* | fix #3577: show keyboard on edit noteBananeweizen2014-01-312-4/+46
| |
* | Merge branch 'release' into upstreamSamuel Tardieu2014-01-261-1/+6
|\ \ | |/
| * fix #3570: crash when dismissing a progress dialogSamuel Tardieu2014-01-261-1/+6
| | | | | | | | | | | | This crash should never happen if we handled lifecycles more correctly. But to avoid penalizing users in the meantime, this temporary fix will allow the application to go on.
* | fix #3100: Set cursor in personal notes at the endBananeweizen2014-01-171-1/+1
| |
* | Merge remote-tracking branch 'origin/release'Bananeweizen2014-01-171-1/+3
|\ \ | |/
| * fix #3545: Opening saved caches lead to crash if "Last Page" is activeBananeweizen2014-01-171-1/+3
| |
* | Use RxJava.Action1 instead of our RunnableWithArgumentSamuel Tardieu2014-01-111-1/+0
| |
* | fix #3522: do not asynchronously play with GPS statusSamuel Tardieu2014-01-081-23/+0
|/
* fix #3521: GPS would stay on after a cache list refreshSamuel Tardieu2014-01-061-0/+23
| | | | | | | | | | The previous fix for #3521 was incomplete and only reduced the time window during which the GPS could be turned on in a race condition (4c5ef68f45a2b35537b89f857c1aa9fcb117ae83). This one prevents the GPS from being turned on again when the activity is paused (which includes a dead activity as well if the user has left).
* findbugs casts and dereference warningsMichael Keppler2013-12-251-1/+1
|
* fix #3477: NPE in view state managementMichael Keppler2013-12-251-2/+7
|
* fix #3471: avoid null being possible in the interfaceMichael Keppler2013-12-251-2/+5
| | | | | This change also prohibits the same error to occur again in another implementation of the same interface and should therefore be preferred to just checking for null in the current interface implementation.
* refactoring: simplify confirmation dialogs, remove duplicate codeBananeweizen2013-12-194-50/+1
|
* refactor: generalize state storing for listview based viewpager pagesBananeweizen2013-12-081-2/+4
|
* Merge remote-tracking branch 'KiwiStone/issue-3354'Bananeweizen2013-12-081-1/+35
|\
| * fixes #3354 - Position not saved on logbook screenKiwiStone2013-11-291-1/+35
| |
* | refactor: upgrade to butterknife 4Bananeweizen2013-11-271-2/+2
| |
* | refactoring: remove unused codeBananeweizen2013-10-051-9/+1
| |
* | Fixes #3318, OC Authorization activity is black on black with light skin and ↵rsudev2013-10-041-1/+10
| | | | | | | | | | | | Android 2.x Apply DialogTheme which is Android 2.x aware
* | refactoring: cgeoapplication -> CgeoApplicationSamuel Tardieu2013-09-132-6/+6
| |
* | findbugs: unchecked castsBananeweizen2013-08-281-2/+1
|/
* fix #3107: onscreen keyboard remains after failed searchBananeweizen2013-08-051-1/+7
|
* cleanup: remove redundant type castsSamuel Tardieu2013-07-141-2/+2
|
* Implements #750, use preference activitykoem2013-07-092-29/+34
|
* ViewPager - Notify when contents of adapter changecampbeb2013-06-121-4/+9
| | | | | Some missing calls to notifyDataSetChanged discovered when testing latest version of support library
* Restore regular progress dialog stylingcampbeb2013-06-101-1/+1
| | | | Reverts one of the changes in d146f6e25ceaa65983b51e46f2dfa89f71182be8
* Fix #2527 - Apply dialog theme to dialogscampbeb2013-06-081-1/+1
| | | | | | | Ensures the dialog is properly positioned on the screen and treated like a dialog instead of a semi-floating window Fixes #2527
* refactoring: fix deprecation warningsBananeweizen2013-05-271-4/+5
|