I came across this issue when designing my application to be accessible using Talkback.
When android opens an alert dialog, it read out the word "alert" followed by the rest of the dialog. I am not using the alert dialog to display an alert as such, is there any way to make sure android reads out the dialog directly without reading out the word "alert".
Also, is there an alternative to the alert dialog if I just want to display some data that pops up from the screen and can be dismissed the same way an alert dialog is dismissed and that talk back works well with?
Based in this Google Groups post, you can do it just by overriding the View.dispatchPopulateAccessibilityEvent method.
For example: