I have a website which is displayed inside a webview in an Android app. I am testing accessibility using Talkback to navigate the screen. When I arrive at a list item, the full contents is is read out before stopping (which is what I want) but there is no pause between reading out the h2
and the p
so it sounds un-natural. Is there an easy way to add a pause so it's not all read out together?
The only thing I can think of is to add an aria-label
onto the li
where I could add the same contents but add a full stop.
<ul>
<li>
<a href="/">
<h2>Header</h2>
<p>Description</p>
</a>
</li>
<li>
<a href="/">
<h2>Header</h2>
<p>Description</p>
</a>
</li>
</ul>