How are you building the UI?
I had something similar with spinners. If I remember right it was on a Android 4+ device with maxSDK set pretty low.
Well it has 14 and still not working.You probably mean targetSdkVersion. You should set it to 14. In most cases there is no good reason to set maxSdk.
ddManifestText(
<uses-sdk android:minSdkVersion="4" android:targetSdkVersion="14"/>
<supports-screens android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="true"
android:anyDensity="true"/>)
SetApplicationAttribute(android:icon, "@drawable/icon")
SetApplicationAttribute(android:label, "$LABEL$")
Can you upload your project (File - Export as zip)?
SetApplicationAttribute(android:theme, "@android:style/Theme.Holo.Light")
For this issue change your theme to Theme(old) or Holo.Light. To do this click on the menu key on the phone in B4A designer. You also need to set the theme in the manifest editor.
B4X:SetApplicationAttribute(android:theme, "@android:style/Theme.Holo.Light")