协调器布局锚不起作用

时间:2018-08-25 14:16:36

标签: android android-xml android-coordinatorlayout

我无法让锚工作。它不会跟随应用栏滚动到顶部。

 <?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout 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:layout_width="match_parent"
    android:layout_height="match_parent">
<android.support.design.widget.CoordinatorLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:background="@color/testGray">

    <android.support.design.widget.AppBarLayout
        android:id="@+id/appbar"
        android:layout_width="match_parent"
        android:layout_marginLeft="20dp"
        android:layout_marginRight="20dp"
        android:layout_height="200dp"
        android:layout_gravity="center_horizontal"

        >
<android.support.design.widget.CollapsingToolbarLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    app:layout_scrollFlags="scroll|exitUntilCollapsed"
    android:background="?attr/colorPrimary"
    android:fitsSystemWindows="true"
    app:contentScrim="?attr/colorPrimary"
    >


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

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

    <FrameLayout
        android:id="@+id/frame_info"
        android:layout_width="100dp"
        android:layout_height="100dp"
        android:layout_marginTop="140dp"
        android:elevation="11dp"
        android:layout_gravity="center_horizontal"
        app:layout_anchor="@id/appbar"
        app:layout_anchorGravity="center|bottom"
        >

    </FrameLayout>



    <team.semicolon.amizeh.CustomViews.SongsListView
        android:id="@+id/songs_listview"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:layout_constraintTop_toBottomOf="@id/frame_info"
        app:layout_constraintBottom_toBottomOf="parent"
        android:layout_marginTop="60dp"
        android:layout_marginLeft="15dp"
        android:layout_marginRight="15dp"
        app:layout_behavior="@string/appbar_scrolling_view_behavior"
        />

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


</android.support.constraint.ConstraintLayout>

加上,我无法使minHeight正常工作,它一直滚动到顶部。 我希望框架布局跟随应用程序栏并将其锚定,但应用程序栏滚动但框架布局不滚动。

1 个答案:

答案 0 :(得分:0)

  

滚动时,frame_info不跟随应用栏   应该做的。当我将SongsListView滚动到顶部时,应用栏   也移到顶部,但frame_info保持在原处

首先,我不建议使用这样的layout。就像我说的那样,将CoordinatorLayout作为布局的根。

此外,如果要实现FrameLayout滚动时跟随AppbarLayout,则需要将其添加到NestedScrollView内,然后设置NestedScrollView

app:layout_behavior="@string/appbar_scrolling_view_behavior" 

关注AppbarLayout

检查我有关 在哪里使用上述代码的地方 的答案:appbar_scrolling_view_behavior https://stackoverflow.com/a/35181870/4409113