I'm building a UI for my little Python SL4A script that uses WebViews, but I find a little annoying that when I launch my WebView from the SL4A script (droid.webViewShow(...)) the Android notification bar gets hidden!
Here's some code:
import android
droid = android.Android()
droid.webViewShow('file:///sdcard/sl4a/scripts/sample.html')
Is there a way to change this behavior? Any parameter or configuration I'm missing?