01.05.2011 22:55, Bob Kerns пишет:
There is no bad idea which cannot be embellished.Hey, I know perl real well. Can we get that on Android, too?
Someone already did: http://code.google.com/p/perldroid/ http://szabgab.com/blog/2010/05/perl-on-android.htmlNow, this should settle once and for all all discussions about properly using location listeners :)
use Android;
my $d = Android->new;
for (1..10) {
my $loc = $d->getLastKnownLocation;
print "Long: $loc->{result}{longitude} Lat: $loc->{result}{latitude}\n";
sleep 1;
}
-- Kostya Vasilyev -- http://kmansoft.wordpress.com -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

