Android simple service not starting
问题 My problem is in the question title, i'm trying to start/bind a simple service with just log in it and it's not working at all. I want to do it with Service Connexion method : public class testServiceBound extends Service { /** * PRIVATE ATTRIBUTES */ // log private static final String TAG = testServiceBound.class.getSimpleName(); private final Binder _binder = new testBinder(); @Override public void onCreate() { Log.i(TAG, "onCreate--"); super.onCreate(); } @Override public int