Corona tabbar渲染精度

时间:2012-12-12 15:17:57

标签: lua corona

我正在尝试在电晕中构建一个tabbar,只使用自定义图形进行上/下状态和背景。我发现电晕添加左右填充作为附加图像&下面的基本设置显示。图像都是32x32,应该准确填充空间,而不是两端都有黑线,按钮被强制重叠。

我已尝试过文档中的所有选项,但没有成功。有没有人知道是否有一个未记录的选项会覆盖tabbar按钮的自动定位?

    -- table to setup buttons
    local tabButtons = {
        { up="icon1.png", down="icon1-down.png", width = 32, height = 32, cornerRadius=0, onPress=onFirstView, selected=true },
        { up="icon2.png", down="icon2-down.png", width = 32, height = 32, cornerRadius=0, onPress=onSecondView },
    }

    -- create the actual tabBar widget
    local tabBar = widget.newTabBar{
        width=64, height=32,
        buttons = tabButtons
    }

这是输出:

output screenshot

1 个答案:

答案 0 :(得分:2)

这是一个已知错误,正在解决。