Я пытаюсь отобразить карту в Android впервые.
Теперь 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.
Карта должна быть в полноэкранном режиме, а кнопки расположены внизу.
Не знаю, как мне это сделать? Когда мы хотим отобразить карту, используя 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>