jinyistudio Well-Known Member Licensed User Longtime User Apr 12, 2017 #1 Hi I put abmbutton(btnsel) into a cell. Why it cann't align to the center of cell !? B4X: theme.AddCellTheme("cellcenter") theme.Cell("cellcenter").Align = ABM.CELL_ALIGN_CENTER theme.Cell("cellcenter").VerticalAlign = True
Hi I put abmbutton(btnsel) into a cell. Why it cann't align to the center of cell !? B4X: theme.AddCellTheme("cellcenter") theme.Cell("cellcenter").Align = ABM.CELL_ALIGN_CENTER theme.Cell("cellcenter").VerticalAlign = True
M mindful Active Member Licensed User Apr 12, 2017 #2 You need to make the cell fixed height so that the button will center it self. B4X: page.Cell(1, 2).SetFixedHeight(80, False) Upvote 0
You need to make the cell fixed height so that the button will center it self. B4X: page.Cell(1, 2).SetFixedHeight(80, False)