gpt4 book ai didi

Android:服务 'not yet bound' 但调用了 onBind()?

转载 作者:行者123 更新时间:2023-11-29 17:26:01 29 4
gpt4 key购买 nike

我正在尝试制作一个按钮来更改 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;
}
}

最佳答案

将服务中的 onBind() 方法替换为:

@Override
public IBinder onBind(Intent intent) {
isBound = true;
String action = intent.getAction();
Log.d("NOTIF", "onBind: " + action);

if (SERVICE_INTERFACE.equals(action)) {
Log.d("NOTIF", "Bound by system");
return super.onBind(intent);
} else {
Log.d("NOTIF", "Bound by application");
return binder;
}
}

还要检查您的服务是否已在 list 中声明,如 documentation 概述中所示.

如果您的服务在 list 中正确声明,并且在安全/声音和通知中启用了通知访问,系统将使用操作 NotificationListenerService.SERVICE_INTERFACE 绑定(bind)到服务。对于此绑定(bind)请求,服务必须返回 NotificationListenerService 的绑定(bind)程序,即 super.onBind(intent)

关于Android:服务 'not yet bound' 但调用了 onBind()?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34625022/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com