我创建了使用MapView的应用程序。现在我想在我的MapView中使用后退按钮。我已经开发了布局,但它无法看到Button over mapview。当我从Emulator按下按钮时,Mapview变得关闭,并显示Back按钮。 任何研究都可以帮助我如何在MapView上显示后退按钮。 ? 感谢。
答案 0 :(得分:2)
Bo基本上可以使用叠加层,但我已经使用RelativeLayout东西
完成了它<RelativeLayout
android:id="@+id/headerlayout"
android:layout_width="fill_parent"
android:layout_height="wrap_content" android:layout_alignParentTop="true"
android:layout_alignParentLeft="true"
>
<Button android:id="@+id/amap_back_btn" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_alignParentTop="true"
android:layout_alignParentLeft="true" android:text="Back">
</Button>
</RelativeLayout>
<MapViewActivity
xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/mapview"
android:layout_width="wrap_content" android:layout_height="wrap_content"
android:clickable="true" android:apiKey="your map key"
android:layout_below="@+id/headerlayout"
android:layout_above="@+id/bottomlayout"
/>
这就是全部如果您发现它是正确的,请不要忘记将我的答案标记为检查。最诚挚的问候,Anup
答案 1 :(得分:0)
您需要使用叠加层在MapView上添加后退按钮。 请查看本教程,其中介绍了如何添加叠加层。 http://www.anddev.org/viewtopic.php?t=92