I'd just download and use latest version of phonegap : v.1.8.1
as usual, I replace the setContentView(R.layout.main) line with super.loadUrl("file:///android_asset/www/index.html");
When I test my "hello world" application, it will always force close. The app can't run properly. But if i change back the line into setContentView(R.layout.main), the app will run properly and there is no problem (for the application). The real problem is, the application not load the index.html because there is no super.loadUrl("file:///android_asset/www/index.html"); line.
here is my code :
package com.urfinder.android;
import android.os.Bundle;
import org.apache.cordova.DroidGap;
public class URFinderActivity extends DroidGap {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
super.loadUrl("file:///android_asset/www/index.html");
}
}`
Anyone can give me some advise about this? Thank you :)
