I use AndEngine and i have a large tmx map in 3000 * 3000 px. When i click to play button at menu scene for load game scene takes over 20 seconds to loading and wait at menu scene.i want to show progress bar or loading scene when tmx map is loading. It's my code for loading tmx map in game scene.
try{
TMXLoader tmxLoader=new TMXLoader(activity.getAssets(), activity.getTextureManager(),
TextureOptions.BILINEAR_PREMULTIPLYALPHA, vbom);
this.mTMXTiledMap=tmxLoader.loadFromAsset("gfx/level1.tmx");
}catch (final TMXLoadException e){
Debug.e(e);
}