gpt4 book ai didi

java - 如何在我的 Mapbox 图层的左上角添加导航菜单和抽屉

转载 作者:行者123 更新时间:2023-11-30 10:39:25 24 4
gpt4 key购买 nike

enter image description here我想在我的“MapboX map ”图层顶部添加一个导航菜单和抽屉。我在下面添加了我的“RelativeLayout”,也请参见附图。有人可以帮助我实现如何在 map 层顶部添加菜单和抽屉导航。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:mapbox="http://schemas.android.com/apk/res-auto"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin"
tools:context="com.mycompany.myfirstglapp.MainActivity">

<TextView
android:text="Hello mate!"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />

<Button android:id="@+id/locate1"
android:layout_width="100dp"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_alignParentBottom="true"
android:onClick="myButton"
android:text="@string/locate_me"
android:background="#1880c9"/>


<com.mapbox.mapboxsdk.maps.MapView
android:id="@+id/mapview"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
mapbox:style_url="@string/style_mapbox_streets"
mapbox:center_latitude="-36.91044"
mapbox:center_longitude="174.88203"
mapbox:zoom="12"/>


</RelativeLayout>

最佳答案

我会尽我所能向您介绍这一点,有很多教程解释了如何将抽屉导航添加到应用程序,您甚至可以在应用程序中包含一个 Android 项目。由于这些原因,我不会详细介绍如何添加抽屉导航本身。如果您不想要工具栏(虽然大多数应用程序都使用工具栏),而只想在 map 顶部显示抽屉按钮,您需要使用 ImageButton 并设置 onClick事件发生时将打开抽屉的事件。由于您使用的是相对布局,因此 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"/>

希望这可以帮助您入门。

关于java - 如何在我的 Mapbox 图层的左上角添加导航菜单和抽屉,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39302134/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com