if (mEntryProxy == null) {
FrameLayout f = (FrameLayout)findViewById(R.id.FrameLayout1);
// 创建5 内核运行事件监听
WebviewModeListener wm = new WebviewModeListener(this, f);
// 初始化5 内核
mEntryProxy = EntryProxy.init(this, wm);
// 启动5 内核
mEntryProxy.onCreate(this, savedInstanceState, SDK.IntegratedMode.WEBVIEW, null);
setContentView(R.layout.main);
}
Caused by: java.lang.NullPointerException
报错提示空指针
为什么不可以指定布局,不是可以用findViewById吗?
0 个回复