Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm a junior development for android :) In my new application i have a problem with service this is my code:

import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.content.SharedPreferences;
import android.location.LocationManager;
import android.widget.Toast;


public class OnBootReceiver extends BroadcastReceiver 
{
    private boolean service;
    @Override
    public void onReceive(Context context, Intent intent)
    {

        SharedPreferences settings = context.getSharedPreferences(LbsGeocodingActivity.PREFS_NAME, 0);
        service = settings.getBoolean("service", true);//start 
        Toast.makeText(context, "1", Toast.LENGTH_LONG).show(); 
        if(service)
        {
            Toast.makeText(context, "2", Toast.LENGTH_LONG).show(); 
            Intent i = new Intent(context, Receiver.class);     
            context.startService(i);


        }

    }

}

Receiver:

import android.app.Service;
import android.content.Context;
import android.content.Intent;
import android.location.LocationManager;
import android.os.IBinder;
import android.widget.Toast;

public class Receiver extends Service {
    private MyLocationListener myLocationListener;
    private LocationManager locationManager;

    @Override
    public void onCreate() {
      Toast.makeText(this, "Started", Toast.LENGTH_LONG).show();
          //gps
      myLocationListener=new MyLocationListener(this);

      locationManager = (LocationManager) this.getSystemService(Context.LOCATION_SERVICE);
      locationManager.requestLocationUpdates(
            LocationManager.GPS_PROVIDER, 
            LbsGeocodingActivity.MINIMUM_TIME_BETWEEN_UPDATES, 
            LbsGeocodingActivity.MINIMUM_DISTANCE_CHANGE_FOR_UPDATES,
            myLocationListener
      );
    }

    @Override
    public void onDestroy() {
        super.onDestroy();
    }

    @Override
    public IBinder onBind(Intent intent) {
        // TODO Auto-generated method stub
        return null;
    }
}

I have this log:

I/PackageParser(  476): com.androidLocator.libs: compat added android.permission.WRITE_EXTERNAL_STORAGE android.permission.READ_PHONE_STATE
I/ActivityManager(  476): Start proc com.androidLocator.libs for broadcast com.androidLocator.libs/com.androidLocator.OnBootReceiver: pid=1047 uid=10091 gids={3003, 1015}
I/ActivityManager(  476): No longer want com.androidLocator.libs (pid 1047): hidden #16

I see Toast 1 and Toast 2 but not see Toast Started :( Sorry for my bad english.

Thanks

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.