我正在开发一款适用于滑雪者和滑雪板爱好者的Android应用程序,可以将用户从一个点导航到另一个点。
要显示地图,我使用的是Mapsforge-Version 0.4.0。
在地图上我添加了一些图层,现在我想添加一个图像按钮,但所有尝试都失败了。如果没有Xml-File,你有什么想法吗?
我是新人,这是我的第一个问题,所以如果我忘记了一些信息,请告诉我。
答案 0 :(得分:3)
步骤1:避免将内容视图设置为mapView
// setContentView(mapView);
第2步 :
将您的按钮添加到线性布局中
只需将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);