如何在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
。
请帮我。 。 。
没有找到相关结果
已邀请:
1 个回复
完趣镐