How can i launch google maps transit get directions so that when i enter a source and destination by coordinates or by name of a place, google maps suggests transit (bus routes) directions. This is a code for bicycling but i couldn't find one for the transit in the developers.google.com (launch google maps).
Uri gmmIntentUri = Uri.parse("google.navigation:q=Taronga+Zoo,+Sydney+Australia&mode=b");
Intent mapIntent = new Intent(Intent.ACTION_VIEW, gmmIntentUri);
mapIntent.setPackage("com.google.android.apps.maps");
startActivity(mapIntent);