gpt4 book ai didi

cordova - 在 Android 上嵌入 Cordova WebView

转载 作者:行者123 更新时间:2023-12-03 18:18:00 25 4
gpt4 key购买 nike

我正在使用带有 Android SDK 15 的 phonegap“2.0”,我只想在 Android 项目上嵌入 Cordova WebView,我逐步使用指南 Links , 也是 github 中的另一个例子 Links
当我运行时,我的应用程序崩溃并自动停止。
日志错误:

android.view.InflateException: Binary XML file line #6: Error inflating class org.apache.cordova.CordovaWebView

我的 xml 文件
“main.xml”:
<LinearLayout  xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent">
<org.apache.cordova.CordovaWebView android:id="@+id/phoneGapView" android:layout_width="fill_parent" android:layout_height="fill_parent" />
</LinearLayout >

提前谢谢.. :)

最佳答案

你可能和我有同样的错误。一旦我在我的事件中实现了从 CordovaInterface 派生的方法,特别是 getActivity 方法,应用程序就很好地启动了。

@Override
public Activity getActivity() {
return this;
}

请注意,默认实现返回 null,而 CordovaWebView 很可能需要适当的 Activity 实例进行初始化。

注意:我使用的是 PhoneGap 2.1.0

关于cordova - 在 Android 上嵌入 Cordova WebView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13034644/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com