Created
December 27, 2014 03:32
-
-
Save eneim/18f9fe597f6826c92884 to your computer and use it in GitHub Desktop.
update location and get address by GoogleApiClient
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package im.ene.lab.androidlocation; | |
import android.content.Context; | |
import android.location.Address; | |
import android.location.Geocoder; | |
import android.location.Location; | |
import android.os.AsyncTask; | |
import android.os.Bundle; | |
import android.support.v7.app.ActionBarActivity; | |
import android.util.Log; | |
import android.view.Menu; | |
import android.view.MenuItem; | |
import android.widget.TextView; | |
import android.widget.Toast; | |
import com.google.android.gms.common.ConnectionResult; | |
import com.google.android.gms.common.api.GoogleApiClient; | |
import com.google.android.gms.location.LocationListener; | |
import com.google.android.gms.location.LocationRequest; | |
import com.google.android.gms.location.LocationServices; | |
import java.io.IOException; | |
import java.text.DateFormat; | |
import java.util.Date; | |
import java.util.List; | |
import java.util.Locale; | |
public class MainActivity extends ActionBarActivity implements GoogleApiClient.ConnectionCallbacks, GoogleApiClient.OnConnectionFailedListener, LocationListener { | |
private final String TAG = "im.ene.lab.androidlocation.MainActivity"; | |
private TextView mTextLocation; | |
private GoogleApiClient mGoogleApiClient; | |
private LocationRequest mLocationRequest; | |
private Location mLastLocation; | |
@Override | |
protected void onCreate(Bundle savedInstanceState) { | |
super.onCreate(savedInstanceState); | |
setContentView(R.layout.activity_main); | |
mTextLocation = (TextView) findViewById(R.id.text_location); | |
buildGoogleApiClient(); | |
createLocationRequest(); | |
} | |
protected synchronized void buildGoogleApiClient() { | |
mGoogleApiClient = new GoogleApiClient.Builder(this) | |
.addConnectionCallbacks(this) | |
.addOnConnectionFailedListener(this) | |
.addApi(LocationServices.API) | |
.build(); | |
} | |
protected void createLocationRequest() { | |
mLocationRequest = new LocationRequest(); | |
mLocationRequest.setInterval(10000); | |
mLocationRequest.setFastestInterval(5000); | |
mLocationRequest.setPriority(LocationRequest.PRIORITY_HIGH_ACCURACY); | |
} | |
@Override | |
protected void onStart() { | |
super.onStart(); | |
mGoogleApiClient.connect(); | |
} | |
@Override | |
protected void onResume() { | |
super.onResume(); | |
if (mGoogleApiClient.isConnected()) { | |
startLocationUpdates(); | |
} | |
} | |
@Override | |
protected void onPause() { | |
super.onPause(); | |
stopLocationUpdates(); | |
} | |
@Override | |
protected void onStop() { | |
super.onStop(); | |
if (mGoogleApiClient.isConnected()) | |
mGoogleApiClient.disconnect(); | |
} | |
@Override | |
public boolean onCreateOptionsMenu(Menu menu) { | |
// Inflate the menu; this adds items to the action bar if it is present. | |
getMenuInflater().inflate(R.menu.menu_main, menu); | |
return true; | |
} | |
@Override | |
public boolean onOptionsItemSelected(MenuItem item) { | |
// Handle action bar item clicks here. The action bar will | |
// automatically handle clicks on the Home/Up button, so long | |
// as you specify a parent activity in AndroidManifest.xml. | |
int id = item.getItemId(); | |
//noinspection SimplifiableIfStatement | |
if (id == R.id.action_settings) { | |
return true; | |
} | |
return super.onOptionsItemSelected(item); | |
} | |
@Override | |
public void onConnected(Bundle bundle) { | |
mLastLocation = LocationServices.FusedLocationApi.getLastLocation( | |
mGoogleApiClient); | |
updateUI(); | |
startLocationUpdates(); | |
} | |
@Override | |
public void onConnectionSuspended(int i) { | |
stopLocationUpdates(); | |
} | |
@Override | |
public void onConnectionFailed(ConnectionResult connectionResult) { | |
Toast.makeText(this, "Connection Failed", Toast.LENGTH_SHORT).show(); | |
} | |
protected void startLocationUpdates() { | |
LocationServices.FusedLocationApi.requestLocationUpdates(mGoogleApiClient, mLocationRequest, this); | |
} | |
protected void stopLocationUpdates() { | |
LocationServices.FusedLocationApi.removeLocationUpdates( | |
mGoogleApiClient, MainActivity.this); | |
} | |
private void updateUI() { | |
if (mLastLocation != null) { | |
mTextLocation.setText("Time: " + DateFormat.getTimeInstance().format(new Date()) + " | Lat: " + String.valueOf(mLastLocation.getLatitude()) + " | " + "Lng: " + String.valueOf(mLastLocation.getLongitude())); | |
(new GetAddressTask(this)).execute(mLastLocation); | |
} | |
} | |
@Override | |
public void onLocationChanged(Location location) { | |
mLastLocation = location; | |
updateUI(); | |
} | |
private class GetAddressTask extends AsyncTask<Location, Void, String> { | |
Context mContext; | |
public GetAddressTask(Context context) { | |
super(); | |
mContext = context; | |
} | |
@Override | |
protected String doInBackground(Location... params) { | |
Geocoder geocoder = | |
new Geocoder(mContext, Locale.getDefault()); | |
// Get the current location from the input parameter list | |
Location loc = params[0]; | |
// Create a list to contain the result address | |
List<Address> addresses = null; | |
try { | |
addresses = geocoder.getFromLocation(loc.getLatitude(), | |
loc.getLongitude(), 1); | |
} catch (IOException e1) { | |
Log.e("LocationSampleActivity", | |
"IO Exception in getFromLocation()"); | |
e1.printStackTrace(); | |
return ("IO Exception trying to get address"); | |
} catch (IllegalArgumentException e2) { | |
// Error message to post in the log | |
String errorString = "Illegal arguments " + | |
Double.toString(loc.getLatitude()) + | |
" , " + | |
Double.toString(loc.getLongitude()) + | |
" passed to address service"; | |
Log.e("LocationSampleActivity", errorString); | |
e2.printStackTrace(); | |
return errorString; | |
} | |
// If the reverse geocode returned an address | |
if (addresses != null && addresses.size() > 0) { | |
// Get the first address | |
Address address = addresses.get(0); | |
/* | |
* Format the first line of address (if available), | |
* city, and country name. | |
*/ | |
String addressText = String.format( | |
"%s, %s, %s", | |
// If there's a street address, add it | |
address.getMaxAddressLineIndex() > 0 ? | |
address.getAddressLine(0) : "", | |
// Locality is usually a city | |
address.getLocality(), | |
// The country of the address | |
address.getCountryName()); | |
// Return the text | |
return address.toString(); | |
} else { | |
return "No address found"; | |
} | |
} | |
@Override | |
protected void onPostExecute(String address) { | |
Toast.makeText(mContext, address, Toast.LENGTH_SHORT).show(); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment