CollapsingToolbarLayout与SwipeRefreshLayout和Recyclerview无法正常工作

时间:2016-03-12 22:19:18

标签: android android-recyclerview android-collapsingtoolbarlayout

我正在努力让我的工具栏崩溃,我在stackoverflow上看到了一些其他主题 - 看起来是相关的,但修改我的代码并没有帮助这种情况。

swiperefreshlayout仍然可以完成它的工作,我仍然可以浏览recyclerview-items,但我的栏不会崩溃.. 另外:似乎工具栏现在与我的recyclerview的一部分重叠

代码:

<android.support.design.widget.FloatingActionButton
    android:id="@+id/fab"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"

    android:elevation="6dp"

    android:onClick="showInputDialog"
    android:src="@drawable/ic_action_add"
    app:layout_anchor="@id/appbar"
    app:layout_anchorGravity="bottom|right|end"

    />

<android.support.design.widget.AppBarLayout
    android:id="@+id/appbar"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:fitsSystemWindows="true">

    <android.support.design.widget.CollapsingToolbarLayout
        android:id="@+id/collapse_toolbar"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:fitsSystemWindows="true"
        app:layout_scrollFlags="scroll|exitUntilCollapsed">

        <android.support.v7.widget.Toolbar
            android:id="@+id/MyToolbar"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            app:layout_collapseMode="pin" />

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

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


<android.support.v4.widget.SwipeRefreshLayout
    android:id="@+id/swiperefresh"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    app:layout_behavior="@string/appbar_scrolling_view_behavior"
    app:layout_collapseMode="parallax">


    <android.support.v7.widget.RecyclerView
        android:id="@+id/aandelenlijst"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:scrollbars="vertical">


    </android.support.v7.widget.RecyclerView>


</android.support.v4.widget.SwipeRefreshLayout>

0 个答案:

没有答案