<AndroidMainfest.xml>
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="unist.youannme"
android:versionCode="1"
android:versionName="1.0">
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".youeng"
>
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
<uses-permission android:name="android.permission.INTERNET" />
<uses-sdk android:minSdkVersion="8" />
</manifest>
</res/layout/main.xml>
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
/>
<WebView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/webView"
/>
</LinearLayout>
<unist.youannme/youeng.java>
package unist.youannme;
import android.app.Activity;
import android.os.Bundle;
import android.webkit.WebView;
public class youeng extends Activity {
/** Called when the activity is first created. */
WebView browser ;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
browser = (WebView) findViewById(R.id.webView);
browser.loadUrl("file:///android_asset/xml.html");
browser.getSettings().setJavaScriptEnabled(true);
}
}
</asset/xml.html>
<html>
<head>
<title>YOU&ME PRESCHOOL ENGLISH - Intermediate Children</title>
<meta http-equiv="Content-Type" content="text/html; charset=euc-kr">
</head>
<body bgcolor="#000066" topmargin="0" leftmargin="0">
<center>
<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" name="index"
WIDTH="760" HEIGHT="500" ALIGN="" id="index">
<PARAM NAME=movie VALUE="menu1.swf"> <PARAM NAME=quality VALUE=high> <PARAM NAME=menu VALUE=false> <PARAM NAME=bgcolor VALUE=#000066> <EMBED src="menu1.swf" quality=high bgcolor=#000066 WIDTH="760" HEIGHT="500" NAME="index" ALIGN=""
TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer"></EMBED>
</OBJECT>
</center>
</BODY>
</HTML>
각 폴더에 맞게 asset에 xml.html과 menu1.swf가 있고요
안드로이드가 아닌 그냥 윈도우에서 실행시키면 잘 뜨던데 왜 안되는지 모르겠네요...
좀 알려주세요



