How to set tabview left height

just like this picture,I wan to change height when tabview left

可以使用 lv_obj_set_style_pad_bottom 方法来设置bar的底部位置,从而达到调整按钮高度的效果。例如:
lv_obj_set_style_pad_bottom(bar, lv_obj_get_height(cont) * 0.5, LV_PART_MAIN);

感谢您的解答,问题解决了