Android Wear: escucha las notificaciones entrantes

¿Es posible escuchar las notificaciones entrantes en una aplicación portátil de Android? He intentado implementar unNotificationListenerService, pero el servicio esonNotificationPosted () nunca se llama:

public class MyListenerService extends NotificationListenerService {

    @Override
    public void onCreate() {
        super.onCreate();
        Log.d("NotificationListener", "This works....");
    }

    @Override
    public void onNotificationPosted(StatusBarNotification sbn) {
        Log.i("NotificationListener", "... but this method won't be called.");
    }
}

Respuestas a la pregunta(2)

Su respuesta a la pregunta