Vishal Kumar
Vishal Kumar

Reputation: 4617

Should I Use CordovaWebView or AndroidWebView in my android native App?

I am making a few simple applications for android platform using Phonegap. I used to use the Android WebView to display the html files put in the assets directory like this ....

public class MyQuiz extends DroidGap
{
    @Override
    public void onCreate(Bundle savedInstanceState)
    {
        super.onCreate(savedInstanceState);
        super.loadUrl("file:///android_asset/www/index.html");
    }
}

Soon.. I came to know that this can be done using Cordova Web View too. Is there any difference between the two? Like Performance, Look & feel or anything else? Is my approach Right ?

Upvotes: 3

Views: 816

Answers (1)

Siddhartha Gupta
Siddhartha Gupta

Reputation: 1168

Here are some useful links which will help you out to understand the exact difference between AndroidWebView and CordovaWebView

Upvotes: 1

Related Questions