Hi All
I am facing an issue controlling the spinner visibility in code after changing the manifest file to include
instead of
In particular, now, I have to set the spinner position and I must use Visible = true to show the spinner, which I didn't have to do previously. This code forced the spinner to get displayed regardless of Visible = true/false
In the original code, if the user clicked anywhere other than on the spinner, the spinner got dismissed and hidden. After the mods, the spinner gets dismissed but stays visible.
Is there a way to detect this event to hide the spinner?
Thanks in advance
I am facing an issue controlling the spinner visibility in code after changing the manifest file to include
B4X:
<uses-sdk android:minSdkVersion="8" android:targetSdkVersion="14"/>
B4X:
<uses-sdk android:minSdkVersion="8"/>
In particular, now, I have to set the spinner position and I must use Visible = true to show the spinner, which I didn't have to do previously. This code forced the spinner to get displayed regardless of Visible = true/false
B4X:
r.Target = spnNavSpinner
r.RunMethod("performClick")
In the original code, if the user clicked anywhere other than on the spinner, the spinner got dismissed and hidden. After the mods, the spinner gets dismissed but stays visible.
Is there a way to detect this event to hide the spinner?
Thanks in advance