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

问题描述 投票:1回答:1

我已经提出了一个应用程序,我通过解析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上设置TitleMapDirection Page。 请帮我。 。 。

android android-emulator android-layout android-manifest
1个回答
0
投票

我已经回答了这个问题,请检查一下

How to Set Layout with Mapview

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

最诚挚的问候,Anup

© www.soinside.com 2019 - 2024. All rights reserved.