1

みたいなことを達成したい。(FABやスナックバーではありません)。AppBarLayout をオーバーレイするレイアウトを作成するにはどうすればよいですか? このような!Ⅴ

コンテンツをオーバーレイする AppBarLayout

Playストアのように!Ⅴ

PlayストアVと同じように

CoordinatorLayout を使用した私の AppBarLayout と RelativeLayout をコンテンツとして使用した NestedScrollView は次のようになります。Ⅴ

<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/rootLayout"
android:layout_width="match_parent"
android:layout_height="match_parent">

<android.support.design.widget.AppBarLayout
    android:layout_width="match_parent"
    android:layout_height="@dimen/_118sdp"
    android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">

    <android.support.design.widget.CollapsingToolbarLayout
        android:id="@+id/collapsingToolbarLayout"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:contentScrim="@color/mpc_pink"
        app:expandedTitleMarginStart="@dimen/_40sdp"
        app:layout_scrollFlags="scroll|exitUntilCollapsed">

        <de.mypostcardstore.widgets.ItemImageView
            android:id="@+id/header"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:scaleType="centerCrop"
            android:src="@color/mpc_pink"
            app:layout_collapseMode="parallax"
            app:layout_collapseParallaxMultiplier="0.7" />

        <android.support.v7.widget.Toolbar
            android:id="@+id/article_toolbar"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            android:minHeight="?attr/actionBarSize"
            app:contentScrim="@color/mpc_pink"
            app:layout_collapseMode="pin"
            app:layout_scrollFlags="scroll|enterAlways"
            app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
            app:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar" />


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

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

<android.support.v4.widget.NestedScrollView
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="?android:colorBackground"
    android:fillViewport="true"
    app:layout_behavior="@string/appbar_scrolling_view_behavior">

    <RelativeLayout
        android:layout_width="match_parent".....>

誰かが私を助けてくれたら最高です。インターネットで何も見つかりません.. よろしくお願いします!

4

1 に答える 1

-1

難しいことではありません。疑似 XML をいくつかご紹介します

<FrameLayout>

    // this is the background part
    <LinearLayout>
       <Top part "blue">
       <Bottom part "white">
    <LinearLayout/>

    // here is your main content that overlay the background
    <MainContent margingTop="toolbar_height + something more"/>

    // here is the toolbar with no background
    <ToolBar background=@null height="toolbar_height"/>
<FrameLayout/>
于 2015-06-25T15:21:05.263 に答える