Hello,
I am developing an application in order to connect to Google Navigator by the following code..
public static void Call_GoogleMapsNavigation(int longitud,int latitud)
import android.app.Activity;
import android.content.Context;
import android.content.Intent;
import android.net.Uri;
{
Intent i = new Intent(android.content.Intent.ACTION_VIEW,
Uri.parse("google.navigation:q=" +latitud+ ","+longitud+""));
Context.startActivity(i);
}
... but I get the following error:
Error returned:
GWDCPSET_GlobalProcedures_MobileDevice.java:1223: cannot find symbol
symbol : method startActivity(android.content.Intent)
location: class antay.cfsatv30.wdgen.GWDCPSET_GlobalProcedures_MobileDevice
startActivity(i);
^
I can not find the solution to the problem ...

Thank you very much,</SPAN>