2

次の XML コードがあります。

<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:fitsSystemWindows="true"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <android.support.design.widget.AppBarLayout
        android:id="@+id/abl_header"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:fitsSystemWindows="true"
        android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">

        <android.support.design.widget.CollapsingToolbarLayout
            android:id="@+id/ctl_header"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            app:contentScrim="?attr/colorPrimary"
            android:fitsSystemWindows="true"
            app:expandedTitleMarginEnd="64dp"
            app:expandedTitleMarginStart="48dp"
            app:layout_scrollFlags="scroll|exitUntilCollapsed|snap">

            <fragment
                android:id="@+id/map"
                android:name="com.google.android.gms.maps.SupportMapFragment"
                xmlns:map="http://schemas.android.com/apk/res-auto"
                android:layout_width="match_parent"
                android:layout_height="280dp"
                android:fitsSystemWindows="true"
                app:layout_collapseMode="parallax"
                app:layout_collapseParallaxMultiplier="0.5"
                map:cameraZoom="15"
                map:liteMode="true"
                map:mapType="normal"/>


            <android.support.v7.widget.Toolbar
                android:id="@+id/toolbar"
                android:layout_width="match_parent"
                android:layout_height="?attr/actionBarSize"
                android:elevation="@dimen/spacing_tiny"
                app:layout_collapseMode="pin"
                app:popupTheme="@style/ThemeOverlay.AppCompat.Light"/>

        </android.support.design.widget.CollapsingToolbarLayout>

    </android.support.design.widget.AppBarLayout>


    <android.support.v7.widget.RecyclerView
        android:id="@+id/rv_view"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        app:layout_behavior="@string/appbar_scrolling_view_behavior"/>

    <android.support.design.widget.FloatingActionButton
        android:id="@+id/fab_pin"
        style="@style/FabStyle"
        app:layout_anchor="@id/abl_header"
        app:layout_anchorGravity="bottom|right|end"/>

</android.support.design.widget.CoordinatorLayout>

下の図のように、ステータスバーの下にMapView(ここではフラグメント)を描画したいと思います。 期待される結果

しかし、代わりに次の結果が得られました。 動作しない結果

ただし、スクロールすると、下の図に示すように、MapView がステータス バーの下に正しく描画されます。 スクロール時に下に描画される MapView

これは、フラグメントの代わりに ImageView を使用している場合に機能するため、フラグメントがビルドされているときの測定が間違っているためだと推測しています。

ImageView にビットマップを挿入する前に、MapView を作成してコードからビットマップを作成する以外の解決策があるかどうかを知りたいです。

4

1 に答える 1

2

私はこれを解決する方法を理解しています。

レイアウト ファイル自体から MapView フラグメントを作成する代わりに。SupportMapFragment を作成し、従来の Fragment トランザクションを使用してビューに追加します。

そのようにして、私は正しいレンダリングをしています。

于 2016-04-16T20:00:59.697 に答える