Droidgap is a class in Android that represents the Phonegap application.
Definition
Droidgap is a class in android that represents the phonegap application. It is an activity that should be extended by the user to load the specific html file that contains the application.
Example
This is an example class of Droidgap:
/* Droidgap extends Activity to function */
import android.app.Activity;
...
public class Droidgap extends Activity {
/* onCreate() is a necessary function for Droidgap */
public void onCreate() {
...
}
...
}
Usage
Questions tagged with Droidgap should relate to implementations of the Droidgap class, and should be also tagged with android and others as necessary.