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.