嗨我困住了一個問題,我似乎無法解決關於TextField for libgdx。我想忽略某些字符,例如在使用「shift」作爲大寫字符時,不要在文本字段中寫入空格。目前我已經寫過這樣的內容。製作libgdx文本字段會忽略某些字符?
accField.setTextFieldListener(new TextFieldListener() {
public void keyTyped(TextField textField, char c) {
if (c == 'a') {
//Something here that does the replacement maybe?
}
}
});
你見過Textfield.TextfieldFilter嗎?這是你想要的? – Springrbua
這看起來很有趣..我怎麼才能以一種好的方式實現它? – Lucas
我寫了一個答案。希望它可以幫助你。但我從來沒有嘗試過。請告訴我,如果這是錯誤的,糾正我,因爲我也想用我的遊戲過濾器:P – Springrbua