I thought it would be fun to try this out, and I have previous experience with android and Java, using intelliJ idea. But when I get my 'project' up and running, I don't know where to go from there, can someone show me how to make something show up somewhere on the screen? This is what I have after setting it up:
public class AndroidLauncher extends AndroidApplication {
@Override
protected void onCreate (Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
AndroidApplicationConfiguration config = new AndroidApplicationConfiguration();
initialize(new MyGdxGameTest(), config);
}
}
Where can I find tutorials on actual coding for this? Maybe I have got it all wrong somehow, I hope so, please tell me all you know about libgdx for android, or show me an example, if u have the time!