navigationStyle:custom后,求右上角胶囊按钮的尺寸
发布于 6 年前 作者 leizheng 7282 次浏览 来自 问答

app.json 的 windows 设置了navigationStyle:custom后,

右上角的胶囊按钮宽高在不同设备下是怎么计算的?

1 回复

官方有提供API 但有严重BUG 不推荐

https://developers.weixin.qq.com/miniprogram/dev/api/wx.getMenuButtonBoundingClientRect.html

正常来讲 ios下和安卓下胶囊按钮的大小是一样的  胶囊按钮距离屏幕右边距离和statusBar上边距离都是一样的

下面是我测试出来的数据

iOS 真机:

    top 4px

    right 7px

    width 87px

    height 32px

iOS 模拟器:

    top 6px

    right 10px

    width 87px

    height 32px

安卓 真机:

    top 8px

    right 10px

    width 95px

    height 32px

安卓 模拟器:

    top 8px

    right 10px

    width 87px

    height 32px

回到顶部