public class TextField extends Widget implements Disableable
The preferred height of a text field is the height of the TextField.TextFieldStyle.font
and TextField.TextFieldStyle.background
.
The preferred width of a text field is 150, a relatively arbitrary size.
The text field will copy the currently selected text when ctrl+c is pressed, and paste any text in the clipboard when ctrl+v is
pressed. Clipboard functionality is provided via the Clipboard
interface. Currently there are two standard
implementations, one for the desktop and one for Android. The Android clipboard is a stub, as copy & pasting on Android is not
supported yet.
The text field allows you to specify an TextField.OnscreenKeyboard
for displaying a softkeyboard and piping all key events
generated by the keyboard to the text field. There are two standard implementations, one for the desktop and one for Android.
The desktop keyboard is a stub, as a softkeyboard is not needed on the desktop. The Android TextField.OnscreenKeyboard
implementation will bring up the default IME.
Modifier and Type | Class and Description |
---|---|
static class |
TextField.DefaultOnscreenKeyboard
The default
TextField.OnscreenKeyboard used by all TextField instances. |
static interface |
TextField.OnscreenKeyboard
An interface for onscreen keyboards.
|
class |
TextField.TextFieldClickListener
Basic input listener for the text field
|
static interface |
TextField.TextFieldFilter
Interface for filtering characters entered into the text field.
|
static interface |
TextField.TextFieldListener
Interface for listening to typed characters.
|
static class |
TextField.TextFieldStyle
The style for a text field, see
TextField . |
Constructor and Description |
---|
TextField(String text,
Skin skin) |
TextField(String text,
Skin skin,
String styleName) |
TextField(String text,
TextField.TextFieldStyle style) |
Modifier and Type | Method and Description |
---|---|
void |
clearSelection() |
void |
copy()
Copies the contents of this TextField to the
Clipboard implementation set on this TextField. |
void |
cut()
Copies the selected contents of this TextField to the
Clipboard implementation set on this TextField, then removes
it. |
void |
draw(Batch batch,
float parentAlpha)
If this method is overridden, the super method or
Widget.validate() should be called to ensure the widget is laid out. |
int |
getCursorPosition() |
InputListener |
getDefaultInputListener() |
int |
getMaxLength() |
String |
getMessageText() |
TextField.OnscreenKeyboard |
getOnscreenKeyboard()
Default is an instance of
TextField.DefaultOnscreenKeyboard . |
float |
getPrefHeight() |
float |
getPrefWidth() |
String |
getSelection() |
int |
getSelectionStart() |
TextField.TextFieldStyle |
getStyle()
Returns the text field's style.
|
String |
getText() |
TextField.TextFieldFilter |
getTextFieldFilter() |
boolean |
isDisabled() |
boolean |
isPasswordMode() |
void |
next(boolean up)
Focuses the next TextField.
|
void |
selectAll() |
void |
setBlinkTime(float blinkTime) |
void |
setClipboard(Clipboard clipboard) |
void |
setCursorPosition(int cursorPosition)
Sets the cursor position and clears any selection.
|
void |
setDisabled(boolean disabled) |
void |
setFocusTraversal(boolean focusTraversal)
If true (the default), tab/shift+tab will move to the next text field.
|
void |
setMaxLength(int maxLength) |
void |
setMessageText(String messageText)
Sets the text that will be drawn in the text field if no text has been entered.
|
void |
setOnlyFontChars(boolean onlyFontChars)
When false, text set by
setText(String) may contain characters not in the font, a space will be displayed instead. |
void |
setOnscreenKeyboard(TextField.OnscreenKeyboard keyboard) |
void |
setPasswordCharacter(char passwordCharacter)
Sets the password character for the text field.
|
void |
setPasswordMode(boolean passwordMode)
If true, the text in this text field will be shown as bullet characters.
|
void |
setRightAligned(boolean rightAligned) |
void |
setSelection(int selectionStart,
int selectionEnd)
Sets the selected text.
|
void |
setStyle(TextField.TextFieldStyle style) |
void |
setText(String str) |
void |
setTextFieldFilter(TextField.TextFieldFilter filter) |
void |
setTextFieldListener(TextField.TextFieldListener listener) |
getMaxHeight, getMaxWidth, getMinHeight, getMinWidth, invalidate, invalidateHierarchy, layout, needsLayout, pack, setFillParent, setLayoutEnabled, validate
act, addAction, addCaptureListener, addListener, clear, clearActions, clearListeners, clipBegin, clipBegin, clipEnd, debug, drawDebug, fire, getActions, getCaptureListeners, getColor, getDebug, getHeight, getListeners, getName, getOriginX, getOriginY, getParent, getRight, getRotation, getScaleX, getScaleY, getStage, getTop, getTouchable, getUserObject, getWidth, getX, getX, getY, getY, getZIndex, hasParent, hit, isAscendantOf, isDescendantOf, isTouchable, isVisible, localToAscendantCoordinates, localToParentCoordinates, localToStageCoordinates, moveBy, notify, parentToLocalCoordinates, remove, removeAction, removeCaptureListener, removeListener, rotateBy, scaleBy, scaleBy, screenToLocalCoordinates, setBounds, setColor, setColor, setDebug, setHeight, setName, setOrigin, setOrigin, setOriginX, setOriginY, setPosition, setPosition, setRotation, setScale, setScale, setScaleX, setScaleY, setSize, setTouchable, setUserObject, setVisible, setWidth, setX, setY, setZIndex, sizeBy, sizeBy, stageToLocalCoordinates, toBack, toFront, toString
public TextField(String text, TextField.TextFieldStyle style)
public void setMaxLength(int maxLength)
public int getMaxLength()
public void setOnlyFontChars(boolean onlyFontChars)
setText(String)
may contain characters not in the font, a space will be displayed instead.
When true (the default), characters not in the font are stripped by setText. Characters not in the font are always stripped
when typed or pasted.public void setStyle(TextField.TextFieldStyle style)
public TextField.TextFieldStyle getStyle()
setStyle(TextFieldStyle)
is called.public void draw(Batch batch, float parentAlpha)
Widget
Widget.validate()
should be called to ensure the widget is laid out.public void copy()
Clipboard
implementation set on this TextField.public void cut()
Clipboard
implementation set on this TextField, then removes
it.public void next(boolean up)
up
- If true, the TextField with the same or next smallest y coordinate is found, else the next highest.public InputListener getDefaultInputListener()
public void setTextFieldListener(TextField.TextFieldListener listener)
listener
- May be null.public void setTextFieldFilter(TextField.TextFieldFilter filter)
filter
- May be null.public TextField.TextFieldFilter getTextFieldFilter()
public void setFocusTraversal(boolean focusTraversal)
public String getMessageText()
public void setMessageText(String messageText)
messageText
- may be null.public void setText(String str)
public String getText()
public int getSelectionStart()
public String getSelection()
public void setSelection(int selectionStart, int selectionEnd)
public void selectAll()
public void clearSelection()
public void setCursorPosition(int cursorPosition)
public int getCursorPosition()
public TextField.OnscreenKeyboard getOnscreenKeyboard()
TextField.DefaultOnscreenKeyboard
.public void setOnscreenKeyboard(TextField.OnscreenKeyboard keyboard)
public void setClipboard(Clipboard clipboard)
public float getPrefWidth()
getPrefWidth
in interface Layout
getPrefWidth
in class Widget
public float getPrefHeight()
getPrefHeight
in interface Layout
getPrefHeight
in class Widget
public void setRightAligned(boolean rightAligned)
public void setPasswordMode(boolean passwordMode)
setPasswordCharacter(char)
public boolean isPasswordMode()
public void setPasswordCharacter(char passwordCharacter)
BitmapFont
. Default is 149
(bullet).public void setBlinkTime(float blinkTime)
public void setDisabled(boolean disabled)
setDisabled
in interface Disableable
public boolean isDisabled()
Copyright © 2014. All rights reserved.