Getter for the webview

This commit is contained in:
Joe Bowser 2009-11-25 13:27:57 -08:00
parent c16054637a
commit 05e1343cb0

View File

@ -45,7 +45,7 @@ import android.widget.LinearLayout;
public class DroidGap extends Activity { public class DroidGap extends Activity {
private static final String LOG_TAG = "DroidGap"; private static final String LOG_TAG = "DroidGap";
private WebView appView; protected WebView appView;
private LinearLayout root; private LinearLayout root;
private String uri; private String uri;
@ -185,4 +185,9 @@ public class DroidGap extends Activity {
} }
} }
public WebView getView()
{
return this.WebView;
}
} }