You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For my car-tracking app i was using MyTracks for geo-related things. Now after
G. has effectively closed sourced this app, i decided to migrate to Open GPS
Tracker (i even tried integrating before, but now i was obviously more
motivated). So far all went smooth, except for one thing:
When launching Open GPS Tracker map is displayed with my selected track in the
title, but there's no actual path dipslayed, i.e. map remains empty.
The code i'm using is roughly this (borrowed mostly from MetaTracker):
Intent intent = new Intent();
intent.setData(
Uri.withAppendedPath(
Uri.parse("content://nl.sogeti.android.gpstracker/tracks/"),
Long.toString(trackId)
)
);
intent.setClassName(
"nl.sogeti.android.gpstracker",
"nl.sogeti.android.gpstracker.viewer.LoggerMap");
startActivity(intent);
(Full source:
https://code.google.com/p/wheelly/source/browse/WheellyApp/src/com/wheelly/app/T
rackInput.java?name=features%2F20140620-Multivehicle#138)
Why the path isn't displayed?
(Another side-question: how is it possible that activity specified in intent
doesn't actually exist in application? Is it because market version is behind
latest sources?)
Original issue reported on code.google.com by [email protected] on 6 Nov 2014 at 12:00
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
[email protected]
on 6 Nov 2014 at 12:00The text was updated successfully, but these errors were encountered: