我坚持让我的 Android 服务运行,真的需要一些帮助。
我从 Vogella 的关于如何绑定服务的教程开始,最终尝试了我想到的几乎所有方法,并在网络上解决了我的问题。我的主 Activity 的“onStart()”被调用,并且没有抛出异常(创建 Intent,“bindService()”)。但是,也没有启动服务(apiService == null)。
我知道让它工作应该不难,但遗憾的是我已经坚持了两个多小时。非常感谢任何形式的帮助、指示等。
[编辑] 在服务类中设置的断点不会被命中。此外,Log.d() 条目不会在 Logcat 中打印。
服务扩展 Android.Service 并实现我自己的接口:
public class APIService extends Service implements APICall{
private final IBinder binder = new APIBinder();
@Override
public void onCreate() {
super.onCreate();
}
@Override
public int onStartCommand(Intent intent, int flags, int startId){
super.onStartCommand(intent, flags, startId);
return Service.START_NOT_STICKY;
}
@Override
public IBinder onBind(Intent intent) {
return binder;
}
public class APIBinder extends Binder{
public APIService getService(){
return APIService.this;
}
}
//implementation of Interface...
服务的主要活动/绑定:
public class MainActivity extends Activity {
private APIService apiService = null;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
@Override
protected void onStart() {
super.onStart();
Intent serviceIntent = new Intent(this, APIService.class);
bindService(serviceIntent, apiServiceConnection, Context.BIND_AUTO_CREATE);
};
@Override
protected void onDestroy(){
super.onDestroy();
unbindService(apiServiceConnection);
}
private ServiceConnection apiServiceConnection = new ServiceConnection(){
public void onServiceConnected(ComponentName className, IBinder binder) {
APIBinder localBinder = (APIBinder)binder;
apiService = localBinder.getService();
}
public void onServiceDisconnected(ComponentName className) {
apiService = null;
}
};
//click handler, etc...
清单文件条目:
<service android:name=".APIService"/>