アクティビティに CordovaWebView を実装しようとしましたが、次のエラーが発生しました。
android.view.InflateException: Binary XML file line #12: Error inflating class
org.apache.cordova.CordovaWebView
ここに私のコードがあります:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<!-- TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/hello" /-->
<org.apache.cordova.CordovaWebView
android:id="@+id/tutorialView"
android:layout_width="fill_parent"
android:layout_height="fill_parent" />
</LinearLayout>
と:
public class NewActivity extends Activity implements CordovaInterface {
CordovaWebView cwv;
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
cwv = (CordovaWebView) findViewById(R.id.tutorialView);
cwv.loadUrl("file:///android_asset/www/index.html");
}
}
私の Phonegap のバージョンは 2.2.0 です。
前もって感謝します
コビ