开发者

Android can't bind to service

开发者 https://www.devze.com 2023-02-09 18:05 出处:网络
New to android, trying to figure out Services. I\'m trying to bind a service to an activity, I\'m followin开发者_JS百科g the examples in the documentation, but I keep getting a NullPointerException on

New to android, trying to figure out Services. I'm trying to bind a service to an activity, I'm followin开发者_JS百科g the examples in the documentation, but I keep getting a NullPointerException on the line marked below(appService.playSong(title)). Checking it in the debugger reveals that appService is indeed null.

public class Song extends Activity implements OnClickListener,Runnable {
protected static int currentPosition;
private ProgressBar progress;
private TextView songTitle;
private MPService appService;

private ServiceConnection onService = new ServiceConnection() {
    public void onServiceConnected(ComponentName className,
            IBinder rawBinder) {
        appService = ((MPService.LocalBinder)rawBinder).getService();
    }

    public void onServiceDisconnected(ComponentName classname) {
        appService = null;
    }
};


public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.song);

    Intent bindIntent = new Intent(Song.this,MPService.class);
    bindService(bindIntent,onService,
            Context.BIND_AUTO_CREATE);

    Bundle b = getIntent().getBundleExtra("songdata");
    String title = b.getString("song title");

    // ... 

    appService.playSong(title); // nullpointerexception

    // ...

}

Here's the relevant part of the service:

package org.example.music;

// imports

public class MPService extends Service {
private MediaPlayer mp;
public static int currentPosition = 0;
public List<String> songs = new ArrayList<String>();
public static String songTitle;
private static final String MEDIA_PATH = new String("/mnt/sdcard/");

@Override
public void onCreate() {
    super.onCreate();

    mp = new MediaPlayer();
    songs = Music.songs;
}

@Override
public int onStartCommand(Intent intent, int flags, int startId) {
    return Service.START_STICKY;
}

public class LocalBinder extends Binder {
    MPService getService() {
        return MPService.this;
    }
}

private final IBinder binder = new LocalBinder();

@Override
public IBinder onBind(Intent intent) {
    return binder;
}

public void playSong(String songPath) {
try {
    mp.reset();
    mp.setDataSource(songPath);
    mp.prepare();
    mp.start();

    mp.setOnCompletionListener(new OnCompletionListener() {
        public void onCompletion(MediaPlayer arg0) {
            nextSong();
        }
    });

    songTitle = songPath.substring(12,songPath.length()-4);

} catch (IOException e) {
    Log.v(getString(R.string.app_name),e.getMessage());
}
}

public void nextSong() {
if (++currentPosition >= songs.size()) {
    currentPosition = 0;
}
String song = MEDIA_PATH+songs.get(currentPosition);
playSong(song);
} 

public void prevSong() {
if (--currentPosition<0) {
    currentPosition=songs.size()-1;
}
String song = Music.MEDIA_PATH+songs.get(currentPosition);
playSong(song);
}

public int getSongPosition() {
return mp.getCurrentPosition();
}

public MediaPlayer getMP() {
return mp;
}
}

I have registered the service in AndroidManifest.xml and set android:enabled="true". Do you see any obvious mistakes here?


There are two kinds of binds you can make local and remote. Local is only for use by your application and remote if for use by any application that implements certain interface. You should start with local binding.

Local binding tutorial.
Remote binding tutorial.

My solution without bind:

public class MyActivity extends Activity{

  @Override
  public void onCreate(Bundle savedInstanceState){
   ...
   Intent it = new Intent(MyService.ACTIVITY_START_APP);
   it.setClass(getApplicationContext(), MyService.class);
   startService(it);
}

  ...

@Override
    protected void onResume() {
        super.onResume();
        registerBroadcastReceiver();
    }

@Override
    protected void onPause() {
        super.onPause();
        this.unregisterReceiver(this.receiver);
    }

  ...

private BroadcastReceiver receiver = new BroadcastReceiver(){

        @Override
        public void onReceive(Context context, Intent intent) {
            if (intent.getAction().equals(MyService.BROADCAST_INIT)) {
                //do your stuff here after init
            }
        }
    };

private void registerBroadcastReceiver(){
         IntentFilter filter = new IntentFilter();
         filter.addAction(HMyService.BROADCAST_INIT);
         this.registerReceiver(receiver, filter);
    }
}

Your service:

public class MyService extends Service{

public static final String BROADCAST_INITIAL_DATA = "org.myapp.BROADCAST_INIT";
public static final String ACTIVITY_START_APP = "org.myapp.ACTIVITY_START_APP";

  @Override
  public int onStartCommand (Intent intent, int flags, int startId){
    super.onStartCommand(intent, flags, startId);
    if(intent.getAction().equals(ACTIVITY_START_APP)){
      //do your initialization
      //inform the client/GUI
      Intent i = new Intent();
      i.setAction(BROADCAST_INIT);
      sendBroadcast(i);
    }else{
      //some other stuff like handle buttons
    }              
  }
}

good luck.


You are assuming that the bindService() will connect to the service synchronously, but the connection will be available only after onCreate() finshed.

The framework runs onCreate() on the UI thread and bindService() just makes a note to connect to the service later. Connecting to a service will always be done on the UI thread, so this can only happen after onCreate was executed. You can't even count on the connection being set up right after onCreate(). It will happen sometime after that :). Also, the framework might disconnect the service on it's will, though it should only happen in low memory conditions.

So, move the code which works with appService from onCreate() to onServiceConnected() and it's gonna work.


From a quick glance it looks like you are trying to access your service before the binding has completed. You have to make sure onServiceConnected has fired before trying to call any methods on your service.

Example:

Intent bindIntent = new Intent(Song.this,MPService.class);
bindService(bindIntent,onService, Context.BIND_AUTO_CREATE);

//Wait until service has bound
while(appService == null){
     Thread.sleep(100);
}
appService.playSong(title);

This example isn't the best but it demonstrates that you have to wait until the binding has completed before trying to access the service.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号