How to force the onServiceDisconnected() get called?

前端 未结 2 710
故里飘歌
故里飘歌 2020-12-17 04:37

After I have bound a service by calling:

bindService(new Intent(IBumpAPI.class.getName()), connection, Context.BIND_AUTO_CREATE);

I need fo

相关标签:
2条回答
  • 2020-12-17 05:06

    You need to start you service then bind with Context.BIND_NOT_FOREGROUND flag and then stop it. This will cause onServiceDisconnected to be called. Here is code (assuming that you have TestService service defined) of MainActivity with two buttons which are linked to call doBind and doUnbind methods:

    package com.example.servicetest;
    
    import android.app.Activity;
    import android.content.ComponentName;
    import android.content.Context;
    import android.content.Intent;
    import android.content.ServiceConnection;
    import android.os.Bundle;
    import android.os.IBinder;
    import android.util.Log;
    import android.view.Menu;
    import android.view.View;
    
    public class MainActivity extends Activity {
        private static final String TAG = "MainActivity";
    
        private ServiceConnection connection = new ServiceConnection() {
    
            @Override
            public void onServiceDisconnected(ComponentName name) {
                Log.d(TAG, "Service disconnected: " + name);
            }
    
            @Override
            public void onServiceConnected(ComponentName name, IBinder service) {
                Log.d(TAG, "Service connected: " + name);
            }
        };
    
        @Override
        protected void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.activity_main);
    
        }
    
        @Override
        public boolean onCreateOptionsMenu(Menu menu) {
            // Inflate the menu; this adds items to the action bar if it is present.
            getMenuInflater().inflate(R.menu.activity_main, menu);
            return true;
        }
    
        public void doBind(View v) {
            Intent i = new Intent(this, TestService.class);
            startService(i);
            bindService(i, connection, Context.BIND_NOT_FOREGROUND);
        }
    
        public void doUnbind(View v) {
            Intent i = new Intent(this, TestService.class);
            stopService(i);
        }
    
    }
    

    This code provides following logs when you click on buttons:

    11-27 09:21:57.326: D/MainActivity(10724): Service connected: ComponentInfo{com.example.servicetest/com.example.servicetest.TestService}
    11-27 09:21:58.099: D/MainActivity(10724): Service disconnected: ComponentInfo{com.example.servicetest/com.example.servicetest.TestService}
    
    0 讨论(0)
  • 2020-12-17 05:17

    You might just unbind your service

    public void openService {
    mConnection = new ServiceConnection() {
                @Override
                public void onServiceConnected(ComponentName name, IBinder service) {
                    mService = IService.Stub.asInterface(service);
                }
                @Override
                public void onServiceDisconnected(ComponentName cn) {
                    mService = null;
                }
            };
             bindService(service, mConnection, Context.BIND_AUTO_CREATE);   
        }
    }
    
    public void closeService() {
        unbindService(mConnection);
        stopService(new Intent(this, Service.class));
    }
    
    0 讨论(0)
提交回复
热议问题