wx.hideTabBar() 接口调用时底部菜单部位会闪现黑块,体验很不好
发布于 6 年前 作者 fxu 2666 次浏览 来自 问答
  • 当前 Bug 的表现(可附上截图)

在安卓手机下(小米6)调用 wx.hideTabBar() 接口时底部菜单部位会闪现黑块,体验很不好,特别是启用 animation 参数,运行动画时会留出黑块,非常丑

  • 预期表现

希望官方修复此问题

  • 复现路径

调用 wx.hideTabbar() 接口

  • 提供一个最简复现 Demo

page.wxml:

<button bindtap=“toggleTabbar”></button>

page.js:

Page({

    data: {

        showTabbar: true

    },

    toggleTabbar () {

        this.data.showTabbar = !this.data.showTabbar

        this.data.showTabbar ? wx.hideTabBar() : wx.showTabBar()  }

})

3 回复

提供一下出现问题的机型和微信版本,以及能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。

小米8 会闪现黑块 麻烦解决一下

代码就是API

showTabBar({

    animation: true

})

hideTabBar({

    animation: true

})

我也碰到这个问题  - -,小米6,就很丑,只能自己做个tabbar 太鸡肋了

回到顶部