无论滚动

时间:2016-03-07 15:02:46

标签: android user-interface

THis is my layout

我已经搜索了很多但是没有找到解决方案。 我真正想要的是折叠工具栏布局折叠但其中的图像视图不应移动。它应该保持固定,并且nestedscrollview应该在它上面滚动。就像在spotify个人资料页面中看到的一样。它有点类似于我们在css中使用的position:fixed 谢谢:))

这是我的代码

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



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

        android:fitsSystemWindows="true">



        <android.support.design.widget.AppBarLayout
            android:id="@+id/MyAppbar"
            android:layout_width="match_parent"
            android:layout_height="256dp"
            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"
                android:background="@android:color/black"
                app:layout_scrollFlags="scroll|exitUntilCollapsed">

                <FrameLayout
                    android:layout_width="match_parent"
                    android:layout_height="match_parent">
                    <ImageView
                        android:id="@+id/profileBg"
                        android:layout_width="match_parent"
                        android:layout_height="match_parent"
                        android:fitsSystemWindows="true"
                        android:scaleType="centerCrop"
                        app:layout_collapseMode="pin"/>



                </FrameLayout>



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



            </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:layout_gravity="fill_vertical"
            app:layout_behavior="@string/appbar_scrolling_view_behavior">



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

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

<ImageView
    android:layout_width="100dp"
    android:id="@+id/fb123"
    android:layout_height="100dp"
    android:layout_gravity="center_horizontal|top"/>

我想要的是顶部的小方形图像应保持固定,文字下方的大图像应该是#34; Box&#34;应该在它上方滑动。

1 个答案:

答案 0 :(得分:0)

我发现只需设置RelativeLayout

的背景图片就可以轻松实现

这是我的xml`

D57DAE988A1C482EA3217312EDC7466E

`