Android服务还没有绑定

时间:2016-01-05 02:39:00

标签: java android

我正在尝试制作一个按钮,用于更改Android Lollipop中的中断过​​滤器(无,优先,全部)。当我按下按钮时,日志显示Notification listener service not yet bound.。该服务开始,所以我想我试图绑定它错了?我得到"NLS Started"日志而不是"NLS Bound"日志。这是我的代码:

MainActivity.java

public class MainActivity extends Activity {
    private NotificationService notifs;
    private ServiceConnection connection;

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

        notifs = new NotificationService();
        connection = new ServiceConnection() {
            @Override
            public void onServiceConnected(ComponentName name, IBinder service) {
                Log.d("NOTIF", "NLS Started");
                NotificationService.ServiceBinder binder = (NotificationService.ServiceBinder)service;
                notifs = binder.getService();
            }

            @Override
            public void onServiceDisconnected(ComponentName name) {
                Log.d("NOTIF", "NLS Stopped");
            }
        };
        Intent intent = new Intent(this, NotificationService.class);
        startService(intent);
        bindService(intent, connection, Context.BIND_AUTO_CREATE);
        if(notifs.isBound()) {
            Log.d("NOTIFS", "NLS Bound");
        }

        final Button b = (Button) findViewById(R.id.b);
        b.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                if (notifs.getCurrentInterruptionFilter() == NotificationService.INTERRUPTION_FILTER_NONE) {
                    //set all
                    b.setBackground(ContextCompat.getDrawable(MainActivity.this, R.drawable.ic_ring_volume));
                    notifs.requestInterruptionFilter(NotificationService.INTERRUPTION_FILTER_ALL);
                } else if (notifs.getCurrentInterruptionFilter() == NotificationListenerService.INTERRUPTION_FILTER_PRIORITY) {
                    //set none
                    b.setBackground(ContextCompat.getDrawable(MainActivity.this, R.drawable.ic_ring_off));
                    notifs.requestInterruptionFilter(NotificationService.INTERRUPTION_FILTER_NONE);
                } else {
                    //set priority
                    b.setBackground(ContextCompat.getDrawable(MainActivity.this, R.drawable.ic_ring_priority));
                    notifs.requestInterruptionFilter(NotificationService.INTERRUPTION_FILTER_PRIORITY);
                }
            }
        });
    }

    @Override
    public void onDestroy() {
        super.onDestroy();
        unbindService(connection);
        connection = null;
    }
}

NotificationService.java

public class NotificationService extends NotificationListenerService {
    private final IBinder binder = new ServiceBinder();
    private boolean isBound = false;

    public NotificationService() {
    }

    public class ServiceBinder extends Binder {
        NotificationService getService() {
            return NotificationService.this;
        }
    }

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

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

    @Override
    public void onCreate() {
        super.onCreate();
        Log.d("NOTIF", "Started");
        Toast.makeText(NotificationService.this, "NLS Started", Toast.LENGTH_SHORT).show();
    }

    @Override
    public void onDestroy() {
        super.onDestroy();
    }

    public boolean isBound() {
        return isBound;
    }
}

1 个答案:

答案 0 :(得分:1)

服务连接仅适用于bindService()方法。因此,如果您获得“NLS Started”,则表示已执行来自服务连接的onServiceConnected()方法的代码,表明您的服务已成功绑定到您的相应活动。

就“NLS Bound”而言,有时服务连接需要一两秒钟才能将服务与活动绑定。这种延迟不会阻止你的其余代码工作,即bindService()方法下面的if语句甚至会在服务与你的活动绑定之前执行。出于这个原因,我们使用服务连接。服务连接在创建时接收服务对象,并且还通知服务是否被销毁。有关详细信息,请参阅以下链接: -

http://developer.android.com/reference/android/content/Context.html#bindService(android.content.Intent,android.content.ServiceConnection,int)