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?

link|improve this question
By the way I've tried to launch the WebView from Python and JavaScript and I get the same behavior on both. – juandg May 12 '11 at 16:12
Please add more code for me to understand the problem properly. – NeTeInStEiN May 13 '11 at 13:22
@NeTeInStEiN that is all the code! this is a python app on SL4A that is all the code you need to launch a WebView – juandg May 27 '11 at 3:40
feedback

1 Answer

It sounds like you need to re-architect your solution a bit. I would recommend you layout.xml file define the webview and the area of which it resides. In your manifest, you can define if the activity is a fullscreen activity or not, and lastly, you would instantiate it from your client code and render into the current activity.

Try taking a look at http://developer.android.com/guide/tutorials/views/hello-webview.html to get an idea for proper architecture.

If I'm misinterpreted your question, you might consider posting additional code so there is a better understanding of the problem.

link|improve this answer
Thanks a lot for your help, but you probably didn't read the full question, this is a SL4A (Scripting Layer for Android) app, there's no manifest and there are no activities, the tutorial you're linking to is in Java and I'm working on Python. – juandg May 27 '11 at 3:38
Ahh... My misunderstanding, good luck with your issue! – Ty S. May 27 '11 at 3:44
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.