FYI - Can't tap white space on Android listview
This is just some info for others.
I'm not always clear on what parts I need from the jQuery Mobile code so I tend to look at the code on the jquerymobile.com site and cut and paste.
Found a problem with List Dividers that I cut and pasted into my code causing it to break.
<li data-role="list-divider" role="heading" tabindex="-1" class="ui-li ui-li-divider ui-btn ui-bar-b ui-btn-up-undefined">A</li>
This <LI> code works great in FireFox but caused problems with the actual list items I was trying to 'tap' on where only if I tapped on the text would it work the whitespace would fail most of the time. Once I removed role="heading" tabindex="-1" the page worked great.
Nothing wrong with the jQueryMobile code I'm just letting others know to NOT copy the role= line that jquery added once the page was rendered. Looking at the INSPECT ELEMENT option of FireBug isn't always good to copy what you see.