| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
| |
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.
|
| | |
|
| |\
| |
| | |
Implement Android Beam (NFC Sharing) for cgeo
|
| | |
| |
| |
| | |
To support direct opening of CGEO on the other device, introduce a distinction between getBrowserURL and getCgeoURL in providers.
|
| |/
|
|
| |
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.
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
|
| |\ |
|
| | | |
|
| |/ |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| |
|
|
|
|
| |
Android 2.x
Apply DialogTheme which is Android 2.x aware
|
| | |
|
| | |
|
| | |
|
| | |
|
| |
|
|
| |
* If you have compile errors after pulling, please consult the issue on
github.
|
| | |
|
| |
|
|
|
| |
Also, this requires the use of a Loader to visit a cache, since data
cannot be retained accross a configuration change.
|
| |
|
| |
* use alert builder instead of sub menus
|
| |
|
|
| |
This was requested by SammysHP.
|
| | |
|
| | |
|
| | |
|
| |
|
|
|
|
|
| |
* extract network stuff (non GC related)
* extract GC login stuff
* move UI related pieces to activities
* to do: move parsing and searching to better places, remove cgBase
completely afterwards
|
| | |
|
| | |
|
| | |
|
| |
|
| |
class
|
| | |
|
| | |
|
| | |
|
| |
|
|
|
| |
This avoids reinitializing the object (which needs a context to get
localized strings) at every launch of a list or map activity.
|
| |
|
|
|
|
|
|
| |
The cookie store is saved just after a succesful login to
geocaching.com, and cookies are restored when the activity
is restarted.
See issue #686.
|
| | |
|
| |
|
|
|
|
|
|
|
|
| |
* Settings can no longer be instantiated, everything is static instead.
* Most option values are no longer cached in fields. This has been done
for clarity during the refactoring. I will add some performance tests
afterwards and may re-introduce those fields for caching the option
values.
Sorry, if anyone gets merge issues afterwards. There was no easier way
to implement this...
|
| | |
|
|
|
This prepares the inclusion of tests into the same repository.
|