我正在尝试制作一个程序,当手机上出现通知时,textview的值会改变。
在我的主要活动中,我有一个方法:

private void changeText(){
    TextView textNotificationView = (TextView) findViewById(R.id.textNotificationView);
    textNotificationView.setText(R.string.textGotNotification);
}

每当收到通知时,我想从mainactivity调用changeText()。为此,我创建了一个名为NotificationListener的类,它扩展了NotificationListenerService。
public class NotificationListener extends NotificationListenerService {


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

@Override
public void onNotificationPosted(StatusBarNotification sbn) {
    //Change value of TextView
}

@Override
public void onNotificationRemoved(StatusBarNotification sbn){

}
}

基本上,我想调用changeText()-方法中的onNotificationPosted(StatusBarNotification sbn)-方法。
我该怎么做?

最佳答案

我有一个解决方案,就是使用eventbus
首先,创建一个事件

public class NotificationPosted {
// empty if you don't need to pass data
}

其次,在MainActivity中注册此事件
@Override
    protected void onStart() {
        super.onStart();
        EventBus.getDefault().register(this);
    }


@Override
protected void onStop() {
    EventBus.getDefault().unregister(this);
    super.onStop();
}




  @Subscribe(sticky = true, threadMode = ThreadMode.MAIN)
        public void onEvent(NotificationPosted notificationPosted) {
            changeText()
        }

最后,在NotificationListener中发布您的活动
public void onNotificationPosted(StatusBarNotification sbn) {
    EventBus.getDefault().post(new NotificationPosted());
}

08-18 08:47