Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

can anybody tell how to run the local webapplication using android webview

I want to run my own webpages in android using web view

Thanks

share|improve this question
What do you mean by "the local webapplication"? – Dave Webb Aug 5 '10 at 13:25
If I've answered your question, please accept the answer. If not, please provide more detail to get a better answer. – kiswa Aug 6 '10 at 11:58

2 Answers

up vote 2 down vote accepted

I'm guessing you want something like this:

private WebView mWebView;

public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    setContentView(R.layout.yourLayoutWithAWebView);

    mWebView = (WebView)findViewById(R.id.yourWebViewIdFromTheLayout);
    mWebView.getSettings().setJavaScriptEnabled(true); // Enable JavaScript

    mWebView.loadData(yourHtmlData, "text/html", "utf-8");
}

Hopefully, that at least points you in the right direction.

Also, I'd recommend reading the documentation on the WebView, it's pretty thorough.

share|improve this answer

Just run your application on the emulator, as you normally do (and be sure to have your computer connected to internet).

share|improve this answer

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.