1
如果textField與中心對齊,則其文本將在未選中時進入最右角。就像它對齊到正確的時候一樣。 (嘗試getUnselectedStyles()。setAlignment太,另外使用父容器flowlayout,boxlayout,borderlayout等),這是一個錯誤嗎?TextField對齊問題
public NewForm(Resources res){
TextField tf = new TextField("Hello");
tf.getAllStyles().setAlignment(Label.CENTER);
add(tf);
}
使用這種方式: 'tf.setAlignment(TextField.CENTER);' –
提示錯誤:java.lang.IllegalArgumentException異常:中心對準不支持文本字段..... getAllStyles.setAlignment()使用去工作 –