Legacy Documentation: Version 2018.2 (Go to current version)
LanguageEnglish
  • C#

TouchScreenKeyboard

class in UnityEngine

/

Implemented in:UnityEngine.CoreModule

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Description

Interface into the native iPhone, Android, Windows Phone and Windows Store Apps on-screen keyboards - it is not available on other platforms.

This interface allows to display different types of the keyboard: ASCII, Numbers, URL, Email, and others.

Because the appearance of the keyboard has the potential to obscure portions of your user interface, it is up to you to make sure that parts of your user interface are not obscured when the keyboard is being displayed.

TouchScreenKeyboard.visible and TouchScreenKeyboard.area should be used to determine if the keyboard is being shown (activated) and what portion of the screen is using.

Windows Store Apps: On Universal Windows 10 Apps the touch screen keyboard is only supported in XAML based applications with touch input support.

Static Properties

areaReturns portion of the screen which is covered by the keyboard.
hideInputWill text input field above the keyboard be hidden when the keyboard is on screen?
isSupportedIs touch screen keyboard supported.
visibleReturns true whenever any keyboard is completely visible on the screen.

Properties

activeIs the keyboard visible or sliding into the position on the screen?
canGetSelectionSpecifies whether the TouchScreenKeyboard supports the selection property. (Read Only)
canSetSelectionSpecifies whether the TouchScreenKeyboard supports the selection property. (Read Only)
characterLimitHow many characters the keyboard input field is limited to. 0 = infinite.
selectionGets or sets the character range of the selected text within the string currently being edited.
statusReturns the status of the on-screen keyboard. (Read Only)
targetDisplaySpecified on which display the software keyboard will appear.
textReturns the text displayed by the input field of the keyboard.
typeReturns the TouchScreenKeyboardType of the keyboard.

Static Methods

OpenOpens the native keyboard provided by OS on the screen.
对文档有任何疑问,请移步至开发者社区提问,我们将尽快为您解答