Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to load a local javascript file from a webview. The file "search.js" is located under the assets folder in my project. I used this line to load my webpage :

mWebView.loadDataWithBaseURL("file:///android_asset/", data, "text/html", "utf-8", null);

on my webpage, I am using this line :

<script type="text/javascript" src="search.js"></script>

to load my javascript file.

When I run the program, I just get a white page..............

I don't know what to do. Do you have any ideas ?

Thanks !!

share|improve this question

1 Answer

up vote 5 down vote accepted

Try this:

wv.loadUrl("file:///android_asset/yourfile.html");
wv.getSettings().setJavaScriptEnabled(true);
share|improve this answer
1  
change the order of above two statements as well :) – bhups Feb 17 '11 at 4:43
Thanks man !! It works !! – poiuytrez Feb 17 '11 at 16:57

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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