1.离线打包在mainactivity里面启动5+内核会卡死在启动页面
public class MainActivity extends PandoraEntry {
public static EntryProxy mEntryProxy;
// dcloud相关
private FrameLayout frameLayout;// webview父布局
public IWebview webView = null;//
public static Bundle savedInstanceState;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main2);
StatusBarUtils.setStatusBar(this);
frameLayout = findViewById(R.id.frameLayoutwebview);
this.savedInstanceState = savedInstanceState;
// 创建5+内核运行事件监听
WebviewModeListener listener = new WebviewModeListener(this, frameLayout);
// 初始化5+内核
mEntryProxy = EntryProxy.init(this, listener);
// 启动5+内核,并指定内核启动类型
// mEntryProxy.onCreate( savedInstanceState, SDK.IntegratedMode.WEBVIEW,
// null);
// AppApplication.getPer(this,this);
//
}
2.不在这个地方启动,在使用的地方启动,有时候会启动不起来,而且也会有卡死在启动页面的情况
0 个回复