是否可以将固定按钮(带图像)放在Android地图上。
我想在Android地图上添加按钮,然后当用户点击它时,它会在地图上执行某些操作。
与变焦控制类似,但始终可见。
答案 0 :(得分:4)
将地图和按钮放在相对布局中。类似的东西:
<RelativeLayout>
<MapView>
...
</MapView>
<Button>
..make its align parent top property true here
</Button>
</RelativeLayout>
这应该将按钮放在地图顶部并与屏幕顶部对齐。如果你想要一个带图像的按钮,请使用ImageButton insead。
答案 1 :(得分:2)
当你说“在...之上”时,你指的是深度或z索引。使用FrameLayout并先设置MapView,然后设置Button。
<FrameLayout>
<MapView />
<Button .../>
</FrameLayout>
编辑我提到引力是错误的。
相关问题:Placing/Overlapping(z-index) a view above another view in android