aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArtyom Palvelev <artyompp@google.com>2023-09-13 15:24:31 +0100
committerArtyom Palvelev <artyompp@google.com>2023-09-13 14:50:14 +0000
commit1f1e394de9e959178f5e712bf7fb84940ac29d9f (patch)
treed4cb71e334d723b0957f00d4b094df82822c0115
parent0407bf896beaccbe853f1a3438755b2830e210dc (diff)
downloadgamesdk-1f1e394de9e959178f5e712bf7fb84940ac29d9f.tar.gz
add a note about supported input types for GameTextInput
Currently we only support plain text and number inputs. Fix: 290894127 Test: N/A Change-Id: I095be619be6d45fe25469927c4941a5178a0f2a7
-rw-r--r--game-activity/prefab-src/modules/game-activity/include/game-activity/GameActivity.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/game-activity/prefab-src/modules/game-activity/include/game-activity/GameActivity.h b/game-activity/prefab-src/modules/game-activity/include/game-activity/GameActivity.h
index 04b53089..6ff744bf 100644
--- a/game-activity/prefab-src/modules/game-activity/include/game-activity/GameActivity.h
+++ b/game-activity/prefab-src/modules/game-activity/include/game-activity/GameActivity.h
@@ -618,6 +618,8 @@ bool GameActivity_isSoftwareKeyboardVisible(GameActivity* activity);
* https://developer.android.com/reference/android/view/inputmethod/EditorInfo
* for the meaning of inputType, actionId and imeOptions.
*
+ * <b>Note:</b> currently only TYPE_NULL AND TYPE_CLASS_NUMBER are supported.
+ *
* Note that this function will attach the current thread to the JVM if it is
* not already attached, so the caller must detach the thread from the JVM
* before the thread is destroyed using DetachCurrentThread.