Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

So I got my AccessibilityService working with the following code:

@Override
public void onAccessibilityEvent(AccessibilityEvent event) {
    if (event.getEventType() == AccessibilityEvent.TYPE_NOTIFICATION_STATE_CHANGED) {
        List<CharSequence> notificationList = event.getText();
        for (int i = 0; i < notificationList.size(); i++) {
            Toast.makeText(this.getApplicationContext(), notificationList.get(i), 1).show();
        }
    }
}

It works fine for reading out the text displayed when the notifcation was created (1).

enter image description here

The only problem is, I also need the value of (3) which is displayed when the user opens the notification bar. (2) is not important for me, but it would be nice to know how to read it out. As you probably know, all values can be different.

enter image description here

So, how can I read out (3)? I doubt this is impossible, but my notificationList seems to have only one entry (at least only one toast is shown).

Thanks a lot!

/edit: I could extract the notification parcel with

if (!(parcel instanceof Notification)) {
            return;
        }
        final Notification notification = (Notification) parcel;

However, I have no idea how to extract the notifcation's message either from notification or notification.contentView / notification.contentIntent.

Any ideas?

/edit: To clarify what is asked here: How can I read out (3)?

share|improve this question

3 Answers

up vote 18 down vote accepted
+300

I've wasted a few hours of the last days figuring out a way to do what you (and, me too, by the way) want to do. After looking through the whole source of RemoteViews twice, I figured the only way to accomplish this task is good old, ugly and hacky Java Reflections.

Here it is:

    Notification notification = (Notification) event.getParcelableData();
    RemoteViews views = notification.contentView;
    Class secretClass = views.getClass();

    try {
        Map<Integer, String> text = new HashMap<Integer, String>();

        Field outerFields[] = secretClass.getDeclaredFields();
        for (int i = 0; i < outerFields.length; i++) {
            if (!outerFields[i].getName().equals("mActions")) continue;

            outerFields[i].setAccessible(true);

            ArrayList<Object> actions = (ArrayList<Object>) outerFields[i]
                    .get(views);
            for (Object action : actions) {
                Field innerFields[] = action.getClass().getDeclaredFields();

                Object value = null;
                Integer type = null;
                Integer viewId = null;
                for (Field field : innerFields) {
                    field.setAccessible(true);
                    if (field.getName().equals("value")) {
                        value = field.get(action);
                    } else if (field.getName().equals("type")) {
                        type = field.getInt(action);
                    } else if (field.getName().equals("viewId")) {
                        viewId = field.getInt(action);
                    }
                }

                if (type == 9 || type == 10) {
                    text.put(viewId, value.toString());
                }
            }

            System.out.println("title is: " + text.get(16908310));
            System.out.println("info is: " + text.get(16909082));
            System.out.println("text is: " + text.get(16908358));
        }
    } catch (Exception e) {
        e.printStackTrace();
    }

This code worked fine on a Nexus S with Android 4.0.3. However, I didn't test if it works on other versions of Android. It's very likely that some values, especially the viewId changed. I think there should be ways to support all versions of Android without hard-coding all possible ids, but that's the answer to another question... ;)

PS: The value you're looking for (referring to as "(3)" in your original question) is the "text"-value.

share|improve this answer
3  
+1 for the hard work. To get away from the hard coding, you might get more mileage out of text.values which gives you a Collection<String>. If you iterate through this I get two iterations, 1st is the sender's number, 2nd is the message.Collection<String> col = text.values(); String testStr = ""; for (String el : col) testStr = el;// 2nd iteration -> msg – NickT Apr 24 '12 at 22:48
+1 for both of you! It seems to work on 2.3.7 as well, but I will do more testing. Awesome! You will definitely get the bounty, but I will just leave it a couple more days so your answer gets more attention. – Force Apr 25 '12 at 8:02
1  
@Zap was able to verify that this code works on 4.2, too, but: "I've verified this on 4.1.x and 4.2 and it seems to still hold fine in general. However, note that under 4.2 (as opposed to 4.1.x and 4.0.x as far as I've seen) the viewId will sometimes be null so you need to be careful in your tests!" – TomTasche Nov 26 '12 at 16:32
Has anyone managed to get around the issue of viewId being null on 4.2? I'm trying to extract the text from the ContentView as described – Ruiwen Mar 12 at 16:50

To answer your question: This does not seem possible in your case. Below I explain why.

"The main purpose of an accessibility event is to expose enough information for an AccessibilityService to provide meaningful feedback to the user." In cases, such as yours:

an accessibility service may need more contextual information then the one in the event pay-load. In such cases the service can obtain the event source which is an AccessibilityNodeInfo (snapshot of a View state) which can be used for exploring the window content. Note that the privilege for accessing an event's source, thus the window content, has to be explicitly requested. (See AccessibilityEvent)

We can request this privilege explicitly by setting meta data for the service in your android manifest file:

<meta-data android:name="android.accessibilityservice" android:resource="@xml/accessibilityservice" />

Where your xml file could look like:

<?xml version="1.0" encoding="utf-8"?>
 <accessibility-service
     android:accessibilityEventTypes="typeNotificationStateChanged"
     android:canRetrieveWindowContent="true"
 />

We explicitly request the privilige for accessing an event's source (the window content) and we specify (using accessibilityEventTypes) the event types this service would like to receive (in your case only typeNotificationStateChanged). See AccessibilityService for more options which you can set in the xml file.

Normally (see below why not in this case), it should be possible to call event.getSource() and obtain a AccessibilityNodeInfo and traverse through the window content, since "the accessibility event is sent by the topmost view in the view tree".

While, it seems possible to get it working now, further reading in the AccessibilityEvent documentation tells us:

If an accessibility service has not requested to retrieve the window content the event will not contain reference to its source. Also for events of type TYPE_NOTIFICATION_STATE_CHANGED the source is never available.

Apparently, this is because of security purposes...


To hook onto how to extract the notifcation's message either from notification or notification.contentView / notification.contentIntent. I do not think you can.

The contentView is a RemoteView and does not provide any getters to obtain information about the notification.

Similarly the contentIntent is a PendingIntent, which does not provide any getters to obtain information about the intent that will be launched when the notification is clicked. (i.e. you cannot obtain the extras from the intent for instance).

Furthermore, since you have not provided any information on why you would like to obtain the description of the notification and what you would like to do with it, I cannot really supply you with a solution to solve this.

share|improve this answer

There's another way if you don't want to use reflection: instead of traversing the list of "actions" that are listed in the RemoteViews object, you can "replay" them on a ViewGroup:

/* Re-create a 'local' view group from the info contained in the remote view */
LayoutInflater inflater = (LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE);
ViewGroup localView = (ViewGroup) inflater.inflate(remoteView.getLayoutId(), null);
remoteView.reapply(getApplicationContext(), localView);

Note you use remoteView.getLayoutId() to make sure the inflated view corresponds to the one of the notification.

Then, you can retrieve some of the more-or-less standard textviews with

 TextView tv = (TextView) localView.findViewById(android.R.id.title);
 Log.d("blah", tv.getText());

For my own purpose (which is to spy on the notifications posted by a package of my own) I chose to traverse the whole hierarchy under localView and gather all existing TextViews.

share|improve this answer
Perfect! Thank you. I've been able to get title and largeImage of the notification, but no luck with the content text so far. Do you know how to do it? – Artem Ice Jan 18 at 14:46
I know this is old but I this might help others as well. You can get the content using TextView tv = (TextView) localView.findViewById(16908358); with 16908358 taken from TomTasche's answer. As stated above this might return nil in some cases. – Nagi Obeid Apr 20 at 20:46
Nagi, doesn't work for me unfortunately – Artem Ice May 12 at 18:26

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.