If you are using a table, you must change the size cell.
For example, imagine your code:
TextButton btn = new TextButton(...);
btn.setSize(100, 100);
table.add(btn);
Instead, you should define this:
TextButton btn = new TextButton(...);
table.add(btn).size(100, 100);
See this document for more information .
source
share