Problems with android.

I’ve encountered the following issues after exporting my game to android:

  • Whenever a text box is click it pops up another text box which allows text to be written in it which is extremely annoying. (Image)

  • There are no ads on android although I set it up and there should be ads on the top of the screen.

Hi ,

The dialog pops up to let you use the virtual keyboard properly in a way that works for any localization by using a native input textbox. We do this on both Android and iOS.

As for ads, did you set up an AdMob account associated with your package and add the adunit id’s in the Android project settings?

  1. Is there any way I can make the text box work normally?

  2. Yea I’m pretty sure I set it up correctly.

To make text box work normally would require one of two solutions; 1) implement it yourself by creating your own virtual keyboard and dealing with coverage issues like console applications do, or 2) try to put a native text box over the area in Java.

As for the ads, try looking for any debug messages in the logcat.

Is there any way I could get some help with either method, I’ve been looking into FSlateApplication::ShowVirtualKeyboard but I have no idea how to implement it.

FSlateApplication::ShowVirtualKeyboard for Android uses a native dialog to get text. It calls AndroidThunkCpp_ShowVirtualKeyboardInput in AndroidJNI.cpp which calls into GameActivity.java (AndroidThunkJava_ShowVirtualKeyboardInput). The Java side calls back to Java_com_epicgames_ue4_GameActivity_nativeVirtualKeyboardResult with the results.

@
I am interested in this too and I was wondering if you did find a way to solve this…it’s rather important for the project I am working on