我正在尝试在电晕中构建一个tabbar,只使用自定义图形用于向上/向下状态和背景.我发现电晕添加左右填充作为附加图像下面的基本设置显示.图像都是32×32,应该准确填充空间,而不是两端
我已经尝试过文档中的所有选项但没有成功.有没有人知道是否有一个未记录的选项会覆盖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 }
这是输出:
这是一个已知的错误,正在解决.