I have no idea on how.
Let me post my code. The code here is the basic Hello, World! Activity.
package com.apw.games.rpg.medieval;
import android.app.*;
import android.os.*;
import android.view.*;
import android.widget.*;
import android.content.*;
public class Site extends Activity
{
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.site);
}
}
Then, in your
site.xml, place aWebViewelement with ID@+id/webview.