1
vote
0answers
62 views

libgdx textfield language on Android

How to get input into libgdx TextField in native language on Android? I mean an ability to input login or password for example. Yes, i could call smth like Gdx.input.getTextInput or native Android ...
0
votes
2answers
453 views

Scene2d touchDown isn't fired on Actor

I've created a simple test with a touchDown() event on an image actor. The event works on the stage but not on the actor. Can somebody give me a hint? Here is the code: I set the InputProcessor in ...
0
votes
0answers
164 views

How do I process keyboard input that LibGDX can't see in a LibGDX application?

I've found that LibGDX does not process all keyboard keys. I think I've traced the problem to com.badlogic.gdx.backends.lwjgl.LwjglAWTInput (though it may be in LwjglInput; I haven't been able to ...
0
votes
0answers
166 views

Libgdx input - NullPointerException

I tried to implement this code to get touch coordinates from the user. I tried to make a rectangle (playRect) and get the touches in this. If the user touch the rect I want to show him the new screen. ...
3
votes
4answers
837 views

Libgdx: phone's back button continues between screen

I have three classes that implement LibGdx Screen class: MainMenuScreen, LevelSelectScreen, GameScreen For now I have MainMenuScreen's setCatchBackKey set to false, so the game will just exit on ...
2
votes
1answer
2k views

libgdx touchup and touchdragged not being called, but touchdown is

I have an actor on a stage and though hit, and touchdown are being called, touchup and touchdragged aren't. Any ideas on what is wrong? Thanks ............ stage = new Stage(0, 0, true); ...
1
vote
1answer
450 views

libGDX Causing Multitouch Problems

I am working on a game with a virtual joystick in the bottom right corner of the screen and a "move" button in the bottom left. So you use the joystick to point the character in the right direction ...