A页面创建一个 打开B页面并且带titleNview的页面
nv = plus.webview.create(B, B, {
"bounce": "vertical",
"bounceBackground": "#3e5d80",
"titleNView": { //详情页原生导航配置
backgroundColor: '#3e5d80', //导航栏背景色
titleText: title, //导航栏标题
titleColor: '#ffffff', //文字颜色
autoBackButton: true, //自动绘制返回箭头
splitLine: { //底部分割线
color: '#3e5d80'
}
}
});
nv.show("pop-in");
B页面中
mui.plusReady(function(){
//...something
//在创建一个view
wc = plus.webview.create("weburl", "detail", {
top: topoffset,
"bounce": "vertical",
});
self.append(wc);
wc.show();
})
此时topoffset 在ios中必须设置为"0px",但是安卓的时候必须设置 44+ statusbarheight (如果沉浸式)
不知道是bug还是什么原因
1 个回复
2***@qq.com
我遇到的问题和你一样,应该是个bug