The attached project is an edited version of the example in post 1.
In my main project, I am using Firebase notifications.
The "Title" and "Body" of the Firebase notification message is comma delimited and includes a unique ID.
When the Firebase message is received, it is loaded into the CustomListView and the user has the option to Accept or Reject the notification (btnAccept / btnReject)
If the user clicks btnAccept, I parse the notification string and write to SQLite table. Therefore, I must be able to read the full Text in the CustomListView
If the user clicks btnReject, I simply remove the CustomListView item.
I hope this makes sense