如何在MapView上设置类似TitleWindow或BackButton的布局

时间:2011-04-19 11:38:07

标签: android android-emulator android-layout android-manifest

我已经创建了一个应用程序,我通过将现成的URL解析为Google MapView来获取方向。现在我想在布局的顶部设置Back Button和我自己的标题。 怎么可能呢?请帮我。 。 。 我的代码如下:

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);
}

现在怎样才能在Back Button上设置TitleMapDirection Page
请帮我。 。

1 个答案:

答案 0 :(得分:0)

我已经回答了这个问题,请查看

How to Set Layout with Mapview

如果您认为它有用,请将其标记为答案

最诚挚的问候, 阿努普