I’m using PhoneGap. And read it and created my work.
And i added this line in MyworkActivity.java:
super.loadUrl("file:///android_asset/www/index.html");
But when run as my project, get this error:
The method loadUrl(String) is undefined for the type Activity
How can i fix it?
When you are using
PhoneGap, Your class is extended withDroidGapinstead ofActivity, so please check you have probably extended your classActivity.