Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
258 views
in Technique[技术] by (71.8m points)

Android, get Notifications Responses

Does anybody know how to get Android Notifications quick responses?

Example with image:

enter image description here

I'm Developing an app for sending notifications to a non Android Wear smartwatch (Qualcomm Toq), and I want to add those quick responses options. I get those notifications using NotificationListenerService, but I don't find those quick responses anywhere. Could someone suggest a way?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

I was looking for actions inside StatusBarNotification, but they are in the Notifications object inside StatusBarNotification:

@Override
public void onNotificationPosted(StatusBarNotification sbn) {
    Notification n = sbn.getNotification();
    for(Action action : n.actions){
        String title = action.title.toString;
        ...
    }
}

Now I hope to find the way to execute those actions when the smartwatch button is clicked.

Thank you all!


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...