Mega Code Archive

 
Categories / Android / Core Class
 

Provider criteria

package app.test; import android.app.Activity; import android.content.Context; import android.location.Criteria; import android.location.Location; import android.location.LocationListener; import android.location.LocationManager; import android.os.Bundle; import android.widget.TextView; public class Test extends Activity {      @Override   public void onCreate(Bundle icicle) {     super.onCreate(icicle);     setContentView(R.layout.main);     LocationManager locationManager;     locationManager = (LocationManager)getSystemService(Context.LOCATION_SERVICE);     Criteria criteria = new Criteria();     criteria.setAccuracy(Criteria.ACCURACY_FINE);     criteria.setAltitudeRequired(false);     criteria.setBearingRequired(false);     criteria.setCostAllowed(true);     criteria.setPowerRequirement(Criteria.POWER_LOW);     String provider = locationManager.getBestProvider(criteria, true);     Location location = locationManager.getLastKnownLocation(provider);     updateWithNewLocation(location);     locationManager.requestLocationUpdates(provider, 2000, 10, locationListener);   }      private final LocationListener locationListener = new LocationListener() {     public void onLocationChanged(Location location) {       updateWithNewLocation(location);     }           public void onProviderDisabled(String provider){       updateWithNewLocation(null);     }     public void onProviderEnabled(String provider){}     public void onStatusChanged(String provider, int status, Bundle extras) {}   };      private void updateWithNewLocation(Location location) {     TextView myLocationText = (TextView)findViewById(R.id.myLocationText);          String latLongString;           if (location != null) {       double lat = location.getLatitude();       double lng = location.getLongitude();       latLongString = "Lat:" + lat + "\nLong:" + lng;     } else {       latLongString = "No location found";      }          myLocationText.setText("Your Current Position is:\n" + latLongString);     }    } //main.xml <?xml version="1.0" encoding="utf-8"?> <LinearLayout    xmlns:android="http://schemas.android.com/apk/res/android"   android:orientation="vertical"   android:layout_width="fill_parent"   android:layout_height="fill_parent">   <TextView       android:id="@+id/myLocationText"     android:layout_width="fill_parent"      android:layout_height="wrap_content"      android:text="@string/hello"   /> </LinearLayout>