Index: /trunk/27.WebViewTest/default.properties =================================================================== --- /trunk/27.WebViewTest/default.properties (revision 96) +++ /trunk/27.WebViewTest/default.properties (revision 96) @@ -0,0 +1,13 @@ +# This file is automatically generated by Android Tools. +# Do not modify this file -- YOUR CHANGES WILL BE ERASED! +# +# This file must be checked in Version Control Systems. +# +# To customize properties used by the Ant build system use, +# "build.properties", and override values to adapt the script to your +# project structure. + +# Indicates whether an apk should be generated for each density. +split.density=false +# Project target. +target=android-7 Index: /trunk/27.WebViewTest/.classpath =================================================================== --- /trunk/27.WebViewTest/.classpath (revision 96) +++ /trunk/27.WebViewTest/.classpath (revision 96) @@ -0,0 +1,7 @@ + + + + + + + Index: /trunk/27.WebViewTest/.project =================================================================== --- /trunk/27.WebViewTest/.project (revision 96) +++ /trunk/27.WebViewTest/.project (revision 96) @@ -0,0 +1,33 @@ + + + 27.WebViewTest + + + + + + com.android.ide.eclipse.adt.ResourceManagerBuilder + + + + + com.android.ide.eclipse.adt.PreCompilerBuilder + + + + + org.eclipse.jdt.core.javabuilder + + + + + com.android.ide.eclipse.adt.ApkBuilder + + + + + + com.android.ide.eclipse.adt.AndroidNature + org.eclipse.jdt.core.javanature + + Index: /trunk/27.WebViewTest/AndroidManifest.xml =================================================================== --- /trunk/27.WebViewTest/AndroidManifest.xml (revision 96) +++ /trunk/27.WebViewTest/AndroidManifest.xml (revision 96) @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + Index: /trunk/27.WebViewTest/src/soo/webview/WebViewTest.java =================================================================== --- /trunk/27.WebViewTest/src/soo/webview/WebViewTest.java (revision 96) +++ /trunk/27.WebViewTest/src/soo/webview/WebViewTest.java (revision 96) @@ -0,0 +1,31 @@ +package soo.webview; + +import android.app.Activity; +import android.os.Bundle; +import android.webkit.WebView; + +public class WebViewTest extends Activity { + /** Called when the activity is first created. */ + WebView wv; + @Override + public void onCreate(Bundle savedInstanceState) { + super.onCreate(savedInstanceState); + setContentView(R.layout.main); + + wv = (WebView)findViewById(R.id.webView01); +// wv.getSettings().setJavaScriptEnabled(true); +// wv.loadUrl("http://www.naver.com"); + +// String html="" + +// "Hello Android !!!
" + +// //""+ +// ""+ +// ""; + + String servlet = ""+ + "servlet invokation"+ + ""; + wv.loadData(servlet, "text/html", "UTF-8"); + + } +} Index: /trunk/27.WebViewTest/res/values/strings.xml =================================================================== --- /trunk/27.WebViewTest/res/values/strings.xml (revision 96) +++ /trunk/27.WebViewTest/res/values/strings.xml (revision 96) @@ -0,0 +1,5 @@ + + + Hello World, WebViewTest! + WebViewTest + Index: /trunk/27.WebViewTest/res/layout/main.xml =================================================================== --- /trunk/27.WebViewTest/res/layout/main.xml (revision 96) +++ /trunk/27.WebViewTest/res/layout/main.xml (revision 96) @@ -0,0 +1,11 @@ + + + +