I'm just starting to use Phone Gap with jQuery Mobile so I don't quite know how to debug and what sort of debugging tools are available on the emulators.
The header title bar gets pushed down a bit on the Android emulator (AVD_for_Nexus_7_by_Google). However, everything looks fine on the iOS simulator and web browsers.
Any ideas what might be happening or what I might try to debug this?
Here's the code:
<!-- Start of index page -->
<div data-role="page" id="index">
<div data-role="header">
<a href="index.html" data-icon="home" class="ui-btn-left" data-transition="slide" data-direction="reverse">Home</a>
<h1>Hello!</h1>
</div><!-- /header -->
<div data-role="content">
<ul data-role="listview" data-filter="true" data-inset="true">
<li><a href="" data-transition="slide">hihi</a>
<ul data-role="listview" data-filter="true" data-inset="true">
<li><a href="" data-transition="slide">hihi1</a>
<ul data-role="listview" data-filter="true" data-inset="true">
<li>examplea</li>
<li>exampleb</li>
<li>exampleb</li>
</ul>
</li>
<li><a href="" data-transition="slide">hihi2</a>
<ul data-role="listview" data-filter="true" data-inset="true">
<li>example2</li>
<li>example2</li>
<li>example2</li>
</ul>
</li>
<li><a href="" data-transition="slide">hihi3</a>
<ul data-role="listview" data-filter="true" data-inset="true">
<li>example3</li>
<li>example3</li>
<li>example3</li>
</ul>
</li>
</ul>
</li>
</ul>
</div><!-- /content -->
</div><!-- /page -->
Here's an image of what I'm seeing:

Thank you for your time!