3

次の簡単なレイアウトがあります。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

    <com.google.android.maps.MapView
        android:id="@+id/activityMainPoints"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_alignParentLeft="true"
        android:layout_alignParentTop="true"
        android:apiKey="0JsSnv022MOCCXMAJfsQTVtfCiH37VG5XykFLmQ"
        android:clickable="true" />

</RelativeLayout>

ご覧のとおり、MapView は完全な親コンテナー RelativeLayout を埋める必要がありますが、そうではありません。どうすれば修正できますか?

4

2 に答える 2

0
android:layout_width="fill_parent"
android:layout_height="fill_parent"
于 2013-04-29T11:02:01.023 に答える