I am working on a PhoneGap application in which a button click generates a certain number of text fields and selects fields based on user input.
I tested the application on AVD running Android 4.2. Everything worked fine, and the selected cells created along with the text fields looked like this:

Now I tested the same application in AVD running Android 2.3, which gave me the result shown here:
.
Clearly, only the selection window seems weird in Android 2.3, while other controls, such as the text box and buttons, are absolutely wonderful.
I do not know why this is happening. The application uses JQM and Cordova 2.5.0.
To give you a reason for what I'm trying to explain, I have added the code below, which is my markup for the select block
<select class="sel" data-theme="a" id="selectmenu0"> <option value="1">option1</option> <option value="2">option2</option> <option value="3">option3</option> </select>
source share