Is it possible to specify a transportation mode for the navigation App when launching from an Intent? i.e. start navigation with walking directions.
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse("google.navigation:q="+lat+","+lon));
startActivity(intent);