Android Question Show all kml files in google earth

Daniel G

Member
Licensed User
Longtime User
Hi ,

I made a little application to show kml in googleearth

I put some files in a directory in my phone
and when the app is load a listbox show all kml files.

But the problem I load only on file at time
and i would like to show more then one in the same times.


If someone know a solution
send me yours

Thank's
Daniel

Sub ListView1_ItemClick (Position As Int, Value As Object)
lacouche=Value
Dim i As Intent
Dim myKML As String
myKML = File.Combine(File.DirRootExternal&"/KML", lacouche)
i.Initialize(i.ACTION_VIEW, "file:///" & myKML )
i.SetComponent("com.google.earth/.EarthActivity")
StartActivity(i)
End Sub
 

Daniel Gagnon 1961

Member
Licensed User
Hi Franz

Sorry for the long delay

No i cant find any way to show several KML in the same time

So I made a big KML with 2 or more KML source to make a bigger KML and i transfert it to my cell phone :(
 
Upvote 0
Top