我想在“MapboX地图”图层上添加导航菜单和抽屉。 我在下面添加了我的'RelativeLayout',也参见附图。 有人可以帮助我实现如何在地图图层上添加菜单和导航抽屉。
julia> findwrappers(repeat,(String,Int64))
result: [(^,(AbstractString, Integer))]
答案 0 :(得分:1)
我会尽力向您介绍这一点,有许多教程解释如何向应用添加导航抽屉,您甚至可以启动Android应用程序中包含的项目。由于这些原因,我不会详细介绍如何添加导航抽屉本身。如果你不想要一个工具栏(大多数应用程序都使用工具栏),而只想让抽屉按钮显示在地图上方,你将需要使用ImageButton
并有一个onClick事件事件发生时打开抽屉。由于您使用的是Relative布局,因此xml可能如下所示:
<ImageButton
android:id="@+id/drawer_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/<your button image>"
android:layout_alignParentTop="true"
android:layout_alignParentLeft="true"/>
希望这有助于您开始使用。