I have made One Application in Which i am Getting the Direction By parse the Ready made URL to the Google MapView. Now i Want to Set the Back Button And the My Own Header On the Top Of the Layout. How Could it be Possible ? Please help me. . . My Code is as below :
StringBuffer mapUrl = new StringBuffer();
// onCreate Method
@Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main);
mapUrl.append("http://maps.google.com/maps?");
mapUrl.append("saddr="+21.22794190505816+","+72.8173828125);
mapUrl.append("&daddr="+23.039297747769726+","+72.59765);
System.out.println("MapUrl: "+mapUrl.toString());
Intent i = new Intent("android.intent.action.VIEW", Uri.parse(mapUrl.toString()));
startActivity(i);
}
Now how could be Possible to Set the Back Button and Title on the MapDirection Page. Please help me. . .