I'm new to both Android and Locus. What's the best mechanism to get a KML file (either in memory or saved to disk) from my app to Locus?
Thanks.
[I'll be out of the office next week but hope I can get this done in hours, not days, when I get back.]
easist way is to call Intent with Intent.VIEW and add to it data
Intent intent = new Intent(Intent.VIEW);
intent.setData(Uri.fromFile(new File(filepath)));
startActivity(intent);
this should work ...