[SOLVED] Android text input how to?

There is any easy way just to popup the text input on screen to get an typed string ?
Like ask the player to input his player name after he press some button ?

IIRC

JmeSystem.getSoftTextDialogInput().requestDialog(SoftTextDialogInput.TEXT_ENTRY_DIALOG, title, initialValue, listener);
1 Like

That was very easy !!!
Thank you friend !!!

    SoftTextDialogInputListener dt = new SoftTextDialogInputListener() {
        public void onSoftText(int action, String text) {
            System.out.println("data="+text);
        }
    };
    JmeSystem.getSoftTextDialogInput().requestDialog(SoftTextDialogInput.TEXT_ENTRY_DIALOG, "title", "", dt);