各アクティビティの基本的なレイアウトを構築しようとしています。レイアウトにはアクション バーとフッターがあります。通常のアクティビティでフッターを表示しても問題ありませんが、xml に追加しているにもかかわらず、MapView アクティビティではフッターが表示されません。
<include layout="@layout/actionbar" android:layout_height="wrap_content" android:layout_width="fill_parent"> </include> <com.google.android.maps.MapView xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/mapView" android:layout_width="fill_parent" android:layout_height="fill_parent" android:clickable="true" android:enabled="true" android:apiKey="@string/mapAppId" /> <include layout="@layout/footer" android:layout_height="wrap_content" android:layout_width="fill_parent"> </include>
マップの読み込みが完了した後で、マーカーを MapView に読み込む方法はありますか? 現在、マップの読み込みが完了する前にマーカーが表示されることがあります..
ありがとう!