Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

this code not arun #2

Open
Swatisharma0085 opened this issue May 5, 2015 · 1 comment
Open

this code not arun #2

Swatisharma0085 opened this issue May 5, 2015 · 1 comment

Comments

@Swatisharma0085
Copy link

package com.example.gpstracking;

import android.app.Activity;
import android.location.Criteria;
import android.content.Context;
import android.location.Location;
import android.location.LocationManager;
import android.os.Bundle;
import android.location.LocationListener;
import android.util.Log;
import android.view.Menu;
import android.widget.TextView;
import android.widget.Toast;

public class MainActivity extends Activity implements LocationListener {
LocationManager locationManager;
String provider;

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    //Getting locationManager object
   locationManager = (LocationManager)getSystemService(Context.LOCATION_SERVICE);

    //creating an empty criteria object 
   Criteria Criteria = new Criteria();

    //Getting the name of provider that meet the criteria
      provider = locationManager.getBestProvider(Criteria, false);


      if(provider!=null && !provider.equals("")){

          Location location = locationManager.getLastKnownLocation(provider);


          locationManager.requestLocationUpdates(provider ,800000,1, this );

           if(location!= null)
               onLocationChanged(location);
           else
               Toast.makeText(getBaseContext(),

                       "Location can't be found" ,Toast.LENGTH_LONG)
                       .show();
      }
      else
      {
          Toast.makeText(getBaseContext(), " No provider found" , Toast.LENGTH_SHORT).show();
          }
}


@Override

public boolean onCreateOptionsMenu(Menu menu) {
getMenuInflater().inflate(R.menu.main, menu);
    return true;
}

@OverRide
public void onLocationChanged(Location location) {

   //Getting reference to tv_Longitude
TextView tvLongitude = (TextView)findViewById(R.id.tv_longitude);
tvLongitude.setText("Longitude:" + location.getLongitude());

// Getting reference to tv_Latitude
TextView  tvLatitude = (TextView)findViewById(R.id.tv_latitude);


    tvLatitude.setText("Latitude:" + location.getLatitude());

          }

@OverRide
public void onProviderDisabled(String provider){

  Log.d("Latitude","disable");

}

@OverRide
public void onProviderEnabled(String provider){
Log.d("Latitude","enable");

}

@OverRide
public void onStatusChanged(String provider , int status, Bundle extras) {
Log.d("Latitude","status");

   }

}

@Swatisharma0085
Copy link
Author

plz help me

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant