aboutsummaryrefslogtreecommitdiffstats
path: root/main/src/cgeo/geocaching/list
Commit message (Collapse)AuthorAgeFilesLines
* show number of caches also for history and all listsBananeweizen2014-06-013-12/+23
|
* Implement ActionBar using AppCompat in cgeoArne Schwabe2014-05-173-23/+48
| | | | | | | | | | | | | | | | | | | | | | | 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
* refactoring: remove activity referenceBananeweizen2014-05-111-3/+13
|
* silence Findbugs warningMichael Keppler2014-04-191-3/+3
| | | | Findbugs issues an unused object warning, therefore go without an object assignment and have the suppressWarnings at the method level.
* fix remaining warnings or document themMichael Keppler2014-04-191-1/+3
|
* Update to RxJava 0.17.0-RC2Samuel Tardieu2014-02-181-1/+1
|
* fix #3256: Put history in list selectionBananeweizen2014-01-162-2/+14
|
* Use RxJava.Action1 instead of our RunnableWithArgumentSamuel Tardieu2014-01-111-15/+15
|
* refactoring: extract input dialog as reusable codeBananeweizen2013-12-271-44/+5
|
* prohibit empty list name inputBananeweizen2013-12-271-9/+34
|
* fix #3286: move selected caches to a new list not possibleSamuel Tardieu2013-09-151-0/+1
| | | | | The new list needs to be registered as a concrete list so that moving caches into it is allowed.
* fix #3285: delete from list is not possibleSamuel Tardieu2013-09-151-0/+1
| | | | | | | By creating the temporary list, it is recognized as a concrete list towards which caches can be moved. This also fixed #3287.
* refactoring: StoredListBananeweizen2013-09-143-6/+42
| | | * try more encapsulation instead of ID comparisons all time
* refactoring: introduce PseudoList to handle non concrete listsBananeweizen2013-09-143-0/+252
* should make adding a history list entry easier * includes some non null annotations * moved list code into separate package