tablelayout icon indicating copy to clipboard operation
tablelayout copied to clipboard

Table-based layout for Java UI toolkits: libgdx, Swing, Android, TWL

Results 3 tablelayout issues
Sort by recently updated
recently updated
newest added

```kotlin fun t(a: String): TextView { val textView = TextView(this) textView.text = a textView.setTextColor(Color.WHITE) textView.setAutoSizeTextTypeWithDefaults(TextView.AUTO_SIZE_TEXT_TYPE_UNIFORM) textView.setPadding(0, 0, 0, 0) textView.setTypeface(Typeface.MONOSPACE, Typeface.BOLD) return textView } AndroidToolkit.setup(this, R.drawable::class.java) val table = Table()...

As Java 8 got released, the popularity of Swing has decreased and the popularity of JavaFX has increased. Are there any plans on supporting JavaFX 8 ? (If not, consider...

Thanks for such a great tool. I would like to propose a function. It would be good if we can insert a new actor (that becomes a new cell) to...