SimpleLocationGetter


Source link: https://github.com/Skullper/SimpleLocationGetter

SimpleLocationGetter

Very simple way to get last known location.

This library is just a wrap on newly released Location API: https://android-developers.googleblog.com/2017/06/reduce-friction-with-new-location-apis.html

Getting started

This library will perfectly fit your existing build.gradle files:

//Project build.gradle allprojects {

  repositories {

jcenter()

maven {

 url  "http://dl.bintray.com/skullper/maven"

}

  
}
 
}
 //app(module) build.gradle compile 'com.github.skullper:locationgetter:0.1@aar' compile 'com.google.android.gms:play-services-location:11.0.1'

Then you just need to add this two lines of code to get last known location:

SimpleLocationGetter getter = new SimpleLocationGetter(this, this);
 getter.getLastLocation();

Oh, and don't forget to implement this awesome well written listener to class where the previous strings are declared:

implements SimpleLocationGetter.OnLocationGetListener ... @Override public void onLocationReady(Location location){
  Log.d("LOCATION", "onLocationReady: lat="+location.getLatitude() + " lon="+location.getLongitude());
 
}
  @Override public void onError(String error){
  Log.e("LOCATION", "Error: "+error);
 
}

As you probably see in onLocationReady() method you'll get your location and if API cannot get location or you just forgot to turn on your GPS you'll get a exact description in onError() method

And that's all folks!

Nope, also you need to check permissions by yourself. Sorry for this, but it's a SIMPLE location getter.

Good luck|have fun

Resources

A material design music player for Android using google's ExoPlayer library, based off Pasta for Spotify.

Fluent design by contract assertions for Android.

Library for passing arguments into Fragment.

Local network library for connecting Android devices on WiFi. One device serves as a server, others are clients. Library takes care of discovery of server by clients and it uses services and separate threads with sockets to handle communication.

Analytics framework for Android.

This is a sample project showing an implementation of mini navigation drawer for Android.

Topics


2D Engines   3D Engines   9-Patch   Action Bars   Activities   ADB   Advertisements   Analytics   Animations   ANR   AOP   API   APK   APT   Architecture   Audio   Autocomplete   Background Processing   Backward Compatibility   Badges   Bar Codes   Benchmarking   Bitmaps   Bluetooth   Blur Effects   Bread Crumbs   BRMS   Browser Extensions   Build Systems   Bundles   Buttons   Caching   Camera   Canvas   Cards   Carousels   Changelog   Checkboxes   Cloud Storages   Color Analysis   Color Pickers   Colors   Comet/Push   Compass Sensors   Conferences   Content Providers   Continuous Integration   Crash Reports   Credit Cards   Credits   CSV   Curl/Flip   Data Binding   Data Generators   Data Structures   Database   Database Browsers   Date &   Debugging   Decompilers   Deep Links   Dependency Injections   Design   Design Patterns   Dex   Dialogs   Distributed Computing   Distribution Platforms   Download Managers   Drawables   Emoji   Emulators   EPUB   Equalizers &   Event Buses   Exception Handling   Face Recognition   Feedback &   File System   File/Directory   Fingerprint   Floating Action   Fonts   Forms   Fragments   FRP   FSM   Functional Programming   Gamepads   Games   Geocaching   Gestures   GIF   Glow Pad   Gradle Plugins   Graphics   Grid Views   Highlighting   HTML   HTTP Mocking   Icons   IDE   IDE Plugins   Image Croppers   Image Loaders   Image Pickers   Image Processing   Image Views   Instrumentation   Intents   Job Schedulers   JSON   Keyboard   Kotlin   Layouts   Library Demos   List View   List Views   Localization   Location   Lock Patterns   Logcat   Logging   Mails   Maps   Markdown   Mathematics   Maven Plugins   MBaaS   Media   Menus   Messaging   MIME   Mobile Web   Native Image   Navigation   NDK   Networking   NFC   NoSQL   Number Pickers   OAuth   Object Mocking   OCR Engines   OpenGL   ORM   Other Pickers   Parallax List   Parcelables   Particle Systems   Password Inputs   PDF   Permissions   Physics Engines   Platforms   Plugin Frameworks   Preferences   Progress Indicators   ProGuard   Properties   Protocol Buffer   Pull To   Purchases   Push/Pull   QR Codes   Quick Return   Radio Buttons   Range Bars   Ratings   Recycler Views   Resources   REST   Ripple Effects   RSS   Screenshots   Scripting   Scroll Views   SDK   Search Inputs   Security   Sensors   Services   Showcase Views   Signatures   Sliding Panels   Snackbars   SOAP   Social Networks   Spannable   Spinners   Splash Screens   SSH   Static Analysis   Status Bars   Styling   SVG   System   Tags   Task Managers   TDD &   Template Engines   Testing   Testing Tools   Text Formatting   Text Views   Text Watchers   Text-to   Toasts   Toolkits For   Tools   Tooltips   Trainings   TV   Twitter   Updaters   USB   User Stories   Utils   Validation   Video   View Adapters   View Pagers   Views   Watch Face   Wearable Data   Wearables   Weather   Web Tools   Web Views   WebRTC   WebSockets   Wheel Widgets   Wi-Fi   Widgets   Windows   Wizards   XML   XMPP   YAML   ZIP Codes