Android - 带 3 个按钮的地图
我第一次尝试在 Android 中显示地图。 现在我想在地图上显示3个按钮,当我单击特定按钮时,应该引发该按钮的单击事件。
地图应该是全屏的按钮位于下方。
我不知道我该怎么做?当我们想要使用 MapView 显示地图时,我们必须扩展 MapActivity 类。因此,请提出一些想法、示例或参考站点。
编辑:
我已使用以下布局显示地图:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<com.google.android.maps.MapView
android:id="@+id/mapView01"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:enabled="true"
android:clickable="true"
android:apiKey="my generated api key"
/>
<Button
android:text="Button"
android:id="@+id/Button01"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
</Button>
</LinearLayout>
I am trying to display map in Android for the first time.
Now I want to display 3 buttons on the map, and when I clicked on a particular button, that button's click event should be raised.
The map should be in full-screen and buttons are at the below side.
I don't know how I do this? When we want to display map using a MapView we have to extends the MapActivity class. So please suggest some ideas, examples or reference sites.
Edited:
I have displayed map using the following Layout:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<com.google.android.maps.MapView
android:id="@+id/mapView01"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:enabled="true"
android:clickable="true"
android:apiKey="my generated api key"
/>
<Button
android:text="Button"
android:id="@+id/Button01"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
</Button>
</LinearLayout>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
普拉文的回答很好。请记住,
RelativeLayout
的最大优势之一是可以避免不必要的嵌套。布局越简单,维护起来就越容易。这相当于 Praveen 的答案:Praveen's answer is fine. Just keep in mind that one of the greatest avantages of
RelativeLayout
is that you can avoid unnecessary nesting. The more simple your layout, the easier to maintain it is. This is equivalent to Praveen's answer:您需要的代码布局如下。
the code layout that you need is below.