embedding/android/geckoview_example/GeckoViewExample.java

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/embedding/android/geckoview_example/GeckoViewExample.java	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,14 @@
     1.4 +package org.mozilla.geckoviewexample;
     1.5 +
     1.6 +import android.app.Activity;
     1.7 +import android.os.Bundle;
     1.8 +import android.util.AttributeSet;
     1.9 +
    1.10 +public class GeckoViewExample extends Activity {
    1.11 +    /** Called when the activity is first created. */
    1.12 +    @Override
    1.13 +    public void onCreate(Bundle savedInstanceState) {
    1.14 +        super.onCreate(savedInstanceState);
    1.15 +        setContentView(R.layout.main);
    1.16 +    }
    1.17 +}

mercurial