【发布时间】:2016-01-06 03:13:43
【问题描述】:
我正在尝试制作一个按钮来更改 Android Lollipop 中的中断过滤器(无、优先级、全部)。当我按下按钮时,日志显示W/NotificationListenerService[NotificationService]: 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);
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;
Log.d("NOTIF", "NLS Bound");
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;
}
}
【问题讨论】:
-
您在清单中声明
NotificationService是否与documentation 中显示的相同? -
感谢您的回复,我已在清单中正确声明它是 @qbix 为我提供了正确的解决方案。
标签: android android-activity android-service