Mapsforge添加按钮到Mapview



我正在为滑雪者和滑雪者开发一个Android应用程序,它应该引导用户从一个点到另一个点。

为了显示地图,我使用Mapsforge-Version 0.4.0

在地图上,我已经添加了一些图层,现在我想添加一个Imagebutton,但所有的尝试都失败了。您知道如何在没有xml文件的情况下做到这一点吗?

我是新来的,这是我的第一个问题,所以如果我忘记了一些信息,请告诉我

第一步:避免将内容视图设置为mapView

   // setContentView(mapView);


第二步:添加你的按钮到linearlayout
只需将您的linearlayout添加到relativelayout

<RelativeLayout
    android:id="@+id/rlMap"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">
    <LinearLayout
        android:id="@+id/llControls"
        android:orientation="horizontal"
        android:layout_width="fill_parent"
        android:layout_height="50dp"
        android:layout_alignParentBottom="true"
        android:layout_alignParentLeft="true"
        android:layout_alignParentStart="true">
        <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="New Button"
            android:id="@+id/button" />
    </LinearLayout>
</RelativeLayout>

步骤3:找到RelativeLayout并添加mapView对象到它

RelativeLayout rlMap = (RelativeLayout) findViewById(R.id.rlMap);
rlMap.addView(mapView,0);

相关内容

  • 没有找到相关文章

最新更新