1
如何在同一個TextButton中使用兩種樣式?LibGdx - 在一個TextButton中使用兩種樣式
TextButton rankedGame = new TextButton(bundle.get("play"), buttonPlayStyle);
我想在一個較小的字體中添加一個小標題「播放」,這有可能嗎?
如何在同一個TextButton中使用兩種樣式?LibGdx - 在一個TextButton中使用兩種樣式
TextButton rankedGame = new TextButton(bundle.get("play"), buttonPlayStyle);
我想在一個較小的字體中添加一個小標題「播放」,這有可能嗎?
按鈕是一個表的一個子類,這樣你就可以添加另一個標籤來爲您的輔助文字,像這樣:
Label subheadingLabel = new Label("test", skin, "mySmallFont");
rankedGame.getLabelCell().row().add(subheadingLabel);
在第二行,你可以在方法鏈表格單元格對齊例如,它使用.expandX().center()
來居中。如果你的副標題比正文寬,你可以對正文做同樣的處理:
rankedGame.getLabelCell().expandX().center();