简体   繁体   中英

Android bound service onStart does not work

I have a Service (Bound) which I am trying to start from my MainActivity.java. The below is my Main Activity code:

public class MainActivity extends AppCompatActivity {
    Handler m_handler;
    Runnable m_handlerTask ;
    private static ServiceConnection sConnection;
    static boolean  serviceBound = false;

    @Override
    protected void onStart() {
        super.onStart();
        // Bind to LocalService
        Intent intent = new Intent(this, DataDownloaderService.class);
        bindService(intent, sConnection, Context.BIND_AUTO_CREATE);
    }

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        setTheme(R.style.NoActionBar);
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        try {
            if (!Global.isMyServiceRunning(DataDownloaderService.class, this)) {
                sConnection = new ServiceConnection() {
                    @Override
                    public void onServiceConnected(ComponentName className, IBinder service) {
                        // We've bound to LocalService, cast the IBinder and get LocalService instance
                        DataDownloaderService.LocalBinder binder = (DataDownloaderService.LocalBinder) service;
                        Global.dService = binder.getService();
                        serviceBound = true;
                    }

                    @Override
                    public void onServiceDisconnected(ComponentName arg0) {
                        serviceBound = false;
                    }
                };
            }
        }
        catch(Exception ex ){
            String p="";
        }
    }

    @Override
    protected void onResume(){
        super.onResume();
        m_handler = new Handler();
        m_handlerTask = new Runnable()
        {
            @Override
            public void run() {

                RefreshNowPlaying();
                m_handler.postDelayed(m_handlerTask, 1000);

            }
        };
        m_handlerTask.run();           
        }
    }


    void RefreshNowPlaying(){
//Do something            
   }        
}

The service code is as shown below:

public class DataDownloaderService extends Service {

    private final IBinder dBinder = new LocalBinder();

    public class LocalBinder extends Binder {
        DataDownloaderService getService() {
            // Return this instance of LocalService so clients can call public methods
            return DataDownloaderService.this;
        }
    }

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

    @Override
    public void onCreate(){

    }

    @Override
    public void onStart(Intent intent, int startid){
        super.onStart(intent,startid);
        Global.DataDownloaderServiceStatus = "STARTED";
    }

    @Override
    public void onDestroy(){
        Global.DataDownloaderServiceStatus = "STOPPED";
        super.onDestroy();
    }
}

I have also added the service to the AndroidManifest.xml under the Application element. However, I see that the service's onStart is never fired or the override onServiceConnected in the MainActivity is never called. I am new to Anrdoid development and Java. Can someone give me some pointers, please? I have noticed that the service's onCreate is getting hit, by putting breakpoints, but not onStart.

仅当通过context.startService()启动服务时,才会调用onStart() ,请参见此处

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM