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

|| 我编写了一个应用程序,在其中通过将现成的URL解析为
Google MapView
来获得指示。现在,我想在布局顶部设置ѭ1和我自己的标题。 怎么可能呢?请帮我。 。 。 我的代码如下:
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);
}
现在如何在
MapDirection Page
上设置
Back Button
Title
。 请帮我。 。 。
已邀请:
我已经回答了这个问题,请检查一下 如何使用Mapview设置布局 如果您认为它有用,请标记为答案 最好的祝福, 安纳普

要回复问题请先登录注册