aboutsummaryrefslogtreecommitdiffstats
path: root/main/src/cgeo/geocaching/SearchActivity.java
Commit message (Collapse)AuthorAgeFilesLines
* 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-2/+2
| | | | | | | | | | | | | | | | | | | | | | | 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: avoid activity referencesBananeweizen2014-05-111-17/+25
|
* refactoring: create cgeo.geocaching.sensors packageSamuel Tardieu2014-03-061-0/+1
|
* Use explicit locale in upper case conversionSamuel Tardieu2014-02-221-1/+1
| | | | This silences lint, even though a geocode would work the same in any locale.
* Merge branch 'release' into upstreamSamuel Tardieu2014-02-221-1/+1
|\
| * fix #3610: geocode search is case sensitiveSamuel Tardieu2014-02-221-1/+1
| |
* | Update to RxJava 0.17.0-RC2Samuel Tardieu2014-02-181-1/+1
| |
* | fix #3561: remove search suggestions for addressBananeweizen2014-01-211-9/+7
| |
* | refactoring: remove the dangerous ordinal() dependency of the loadersBananeweizen2014-01-171-1/+1
| |
* | new: search suggestions for all search fieldsBananeweizen2014-01-141-17/+45
| |
* | new: search suggestions for caches and trackables while typingBananeweizen2014-01-121-1/+15
|/
* refactoring: make search by owner/finder connector capabilitiesBananeweizen2014-01-041-6/+6
|
* refactoring: simplify confirmation dialogs, remove duplicate codeBananeweizen2013-12-191-6/+7
|
* refactor: upgrade to butterknife 4Bananeweizen2013-11-271-2/+2
|
* trim search queryBananeweizen2013-11-101-1/+3
| | | * fixes bad QR codes on trackables including line break after URL
* fix #3425: Support Trackables With the QR Scanner Included in c:geoBananeweizen2013-11-101-1/+11
|
* refactoring: extract some common codeBananeweizen2013-10-131-60/+23
|
* refactoring: remove unused codeBananeweizen2013-10-121-95/+64
| | | * also fixes butterknife view injection throwing exception
* refactoring: cgeocaches -> CacheListActivitySamuel Tardieu2013-09-131-5/+5
|
* refactoring: cgData -> DataStoreSamuel Tardieu2013-09-131-2/+2
|
* refactoring: findbugs cleanupBananeweizen2013-08-261-1/+1
| | | * don't catch raw exceptions
* fix #3107: onscreen keyboard remains after failed searchBananeweizen2013-08-051-0/+1
|
* Fixes #2881, NullPointerExceptions when gc.com username is blankrsudev2013-07-221-1/+0
| | | | | | - username, password cache was already removed - returning empty pair on missing credentials - cleaning up unneccessary getGcLogin() calls and null checks
* Fixes #2931 - make Handler static to solve lintMarco Jacob2013-07-181-3/+1
|
* Implements #750, use preference activitykoem2013-07-091-1/+2
|
* fix #2886: trackable quick search not workingBananeweizen2013-06-161-11/+10
| | | | | * introduce separate trackable connectors * new detection of not activated trackables * fix geokrety urls
* refactoring: minor cleanup in utils classesBananeweizen2013-06-151-2/+2
|
* refactoring: use activity names for layoutsBananeweizen2013-06-091-1/+1
|
* #2684: Use view injection instead of view.findById()Bananeweizen2013-05-311-42/+37
|
* fix #2740: Bad title, when invoking c:geo from mailBananeweizen2013-05-251-0/+3
|
* refactoring: use menu resources instead of codeBananeweizen2013-05-101-3/+2
|
* fix #1781: Remove help functionBananeweizen2013-05-091-4/+0
|
* #2684: use view injection libraryBananeweizen2013-05-011-1/+0
| | | | * If you have compile errors after pulling, please consult the issue on github.
* refactoring: rename cgeo activity to MainActivityBananeweizen2013-04-281-1/+1
| | | | * this avoids compiler errors when using fully qualified class names as they all start with cgeo.subpackage
* fix #2646: search input should be trimmedSamuel Tardieu2013-04-071-7/+7
|
* code cleanupBananeweizen2013-02-241-15/+15
| | | | | | * rename several lower case classes * more strict visibility modifiers * Lint warnings * style warnings
* refactoring: move some more dialogs into new packageBananeweizen2013-01-271-2/+3
|
* Fix typo in AddressListActivitySamuel Tardieu2013-01-271-1/+1
|
* Isolate intent extras into a new classSamuel Tardieu2013-01-271-8/+6
|
* new: view pager in trackable activityBananeweizen2012-12-231-2/+2
|
* fix #2250: "Scan QR code" doesn't work anymoreBananeweizen2012-12-121-2/+7
|
* fix #2211: remove application-database indirectionBananeweizen2012-12-011-2/+2
|
* code cleanup: fix Lint warnings about LocalesBananeweizen2012-11-221-3/+5
|
* #2084: History for trackable codesBananeweizen2012-10-071-6/+11
|
* Refactoring: remove redundant type castsSamuel Tardieu2012-09-041-2/+2
| | | | | | Those type casts were unnecessary, as the returned value was already of the target type, or the called method (after the cast) was defined by the originally returned type.
* fix #1893: remove go4cacheBananeweizen2012-08-261-3/+0
|
* #1974: change pull request as discussedBananeweizen2012-08-261-1/+1
| | | * use trim instead of deletewhitespace
* Allow searching OC geocodes on main screencampbeb2012-08-171-2/+9
|