Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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. . .

share|improve this question

1 Answer

I have already answer this questions please check this

How to Set Layout with Mapview

if you find it as useful please mark it as an answer

Best Regards, Anup

share|improve this answer
Budy, Still u Don't Understand the Problem. . . – user644458 Apr 19 '11 at 11:48
ok so could you please elaborate.. – Anup Rojekar Apr 19 '11 at 11:50
Just Run My Code in by Making Small application then u got the reality that what happend. . . Your answer cant seen the Layout on the Direction page and i m loading the direction by ready made url by pasing to the New Intent.. . . – user644458 Apr 19 '11 at 11:52
ok so you are using GoogleMap native app provided already on the device to invoke your URL is it so please confirm. – Anup Rojekar Apr 19 '11 at 11:53
Yes it is. Now u got the point. . . – user644458 Apr 19 '11 at 11:56
show 2 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.