我已经提出了一个应用程序,我通过解析Google MapView
的现成URL来获取方向。现在我想设置Back Button
和我自己的标题在布局的顶部。怎么可能呢?请帮我。 。 。我的代码如下:
StringBuffer mapUrl = new StringBuffer();
// onCreate方法
@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);
}
现在怎么可能在Back Button
上设置Title
和MapDirection Page
。
请帮我。 。 。