在滚动上从一个视图切换到另一个视图

时间:2018-01-03 17:40:16

标签: android android-layout

我正在做一个项目。我有一个布局,其顶部为viewScrollview底部为view。最初布局将如下所示。

enter image description here

向上滚动底部布局后。该视图应平滑地更改以下view。如果我向下滚动视图应该回到之前的布局。

enter image description here

正如您所看到的,textviews的位置和大小发生了变化。我怎样才能做到这一点?

这是布局:

<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/home_parentLayout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:animateLayoutChanges="true"
    android:background="@color/AT_charcoal">

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_alignParentStart="true"
        android:layout_alignParentTop="true"
        android:layout_marginBottom="9dp"
        android:background="@drawable/topographybackgroundx">

        <RelativeLayout
            android:id="@+id/layout_header_profile"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginLeft="10dp"
            android:layout_marginRight="10dp"
            android:layout_marginTop="20dp">

            <RelativeLayout
                android:id="@+id/top_ExpandedHeader"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content">

                <RelativeLayout
                    android:layout_width="fill_parent"
                    android:layout_height="wrap_content">

                    <ImageButton
                        android:id="@+id/image_invisalignLogo"
                        android:layout_width="108dp"
                        android:layout_height="26dp"
                        android:background="@drawable/invis_logo"
                        android:contentDescription="@null" />

                    <ImageButton
                        android:id="@+id/image_profile"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:layout_alignParentEnd="true"
                        android:background="@drawable/ic_profile_wht"
                        android:contentDescription="@null" />
                </RelativeLayout>

                <RelativeLayout
                    android:id="@+id/number_RelativeLayout"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content">

                    <RelativeLayout
                        android:id="@+id/layout_aligner_expanded_change"
                        android:layout_width="fill_parent"
                        android:layout_height="wrap_content"
                        android:layout_marginTop="30dp">

                        <TextView
                            android:id="@+id/image_alignerNumber"
                            style="@style/BigNumber"
                            android:layout_width="wrap_content"
                            android:layout_height="138dp"
                            android:layout_alignParentStart="true"
                            android:layout_below="@+id/textview_alignerTimeChange"
                            android:maxLength="2"
                            android:maxLines="1"
                            android:text="@string/three"
                            android:textSize="124sp" />

                        <TextView
                            android:id="@+id/textview_alignerChange"
                            style="@style/BodyWhite"
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
                            android:layout_marginStart="5dp"
                            android:layout_marginTop="80dp"
                            android:layout_toEndOf="@id/image_alignerNumber"
                            android:letterSpacing="0.03"
                            android:text="@string/days_alignerchange" />


                        <de.hdodenhof.circleimageview.CircleImageView xmlns:app="http://schemas.android.com/apk/res-auto"
                            android:id="@+id/image_selfie_icon"
                            android:layout_width="96dp"
                            android:layout_height="96dp"
                            android:layout_alignParentEnd="true"
                            android:layout_centerVertical="true"
                            app:civ_border_color="#FFFFFFFF"
                            app:civ_border_width="2dp" />

                        <TextView
                            android:id="@+id/textview_6alignerNumber"
                            style="@style/HeaderWhite"
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
                            android:layout_alignLeft="@id/image_alignerNumber"
                            android:layout_below="@id/image_alignerNumber"
                            android:layout_marginTop="2dp"
                            android:letterSpacing="0.03"
                            android:text="@string/aligner_number" />

                        <TextView
                            android:id="@+id/textview_expanalignerNumber"
                            style="@style/HeaderWhite"
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
                            android:layout_below="@id/image_alignerNumber"
                            android:layout_toEndOf="@id/textview_6alignerNumber"
                            android:text="5" />


                        <TextView
                            android:id="@+id/textview_alignerTimeChange"
                            style="@style/LargeHeaderWhite"
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
                            android:layout_marginTop="17dp"
                            android:letterSpacing="0.03"
                            android:text="@string/aligner_change"
                            android:visibility="gone" />

                        <Button
                            android:id="@+id/button_change"
                            style="@style/TextButtonWhite"
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
                            android:layout_below="@id/textview_alignerTimeChange"
                            android:layout_marginTop="15dp"
                            android:background="@color/AT_lushGreen"
                            android:gravity="center_vertical"
                            android:paddingLeft="30dp"
                            android:paddingRight="30dp"
                            android:text="@string/changenow"
                            android:visibility="gone" />

                    </RelativeLayout>

                <View
                    android:id="@+id/dividerline"
                    android:layout_width="fill_parent"
                    android:layout_height="2dp"
                    android:layout_below="@id/number_RelativeLayout"
                    android:layout_marginTop="12dp"
                    android:background="@color/AT_line" />

                <TextView
                    android:id="@+id/addPhoto_TextView"
                    style="@style/BtnTextBlue18"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_below="@id/dividerline"
                    android:layout_marginTop="10dp"
                    android:text="@string/add_photo" />

                <TextView
                    android:id="@+id/goCalendar_TextView"
                    style="@style/BtnTextGold18"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_alignParentEnd="true"
                    android:layout_below="@id/dividerline"
                    android:layout_marginTop="7dp"
                    android:text="@string/go_calendar" />
            </RelativeLayout>

        </RelativeLayout>

        <include
            layout="@layout/homescreen_scrollview"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_below="@id/layout_header_profile"
            android:layout_marginTop="15dp" />

    </RelativeLayout>

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

2 个答案:

答案 0 :(得分:1)

您可以使用Collapsing Toolbar Layout

Example Herehere

编辑:一段代码

<android.support.design.widget.CoordinatorLayout
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.support.design.widget.AppBarLayout
    android:id="@+id/app_bar_layout"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">

    <android.support.design.widget.CollapsingToolbarLayout
        android:id="@+id/collapsing_toolbar"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:layout_scrollFlags="scroll|exitUntilCollapsed"
        app:contentScrim="?attr/colorPrimary">

        <ImageView
            android:id="@+id/expandedImage"
            android:layout_width="match_parent"
            android:layout_height="200dp"
            android:src="@drawable/beach_scene"

            android:scaleType="centerCrop"
            app:layout_collapseMode="parallax"
         app:layout_collapseParallaxMultiplier="0.7"
            />

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


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


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


        <TextView
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:text="@string/sample_string"/>

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

答案 1 :(得分:1)

使用折叠工具栏作为João说,你的代码应该是这样的 并从here

获取我的答案
<android.support.design.widget.CoordinatorLayout
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:clipToPadding="false">
    <android.support.design.widget.AppBarLayout
        android:id="@+id/app_bar_layout"
        android:layout_width="match_parent"
        android:layout_height="210dp"
        android:background="@color/WHITE">

        <android.support.design.widget.CollapsingToolbarLayout
            android:id="@+id/collapsing_toolbar_layout"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            app:collapsedTitleTextAppearance="@style/TextAppearance.AppCompat.Widget.ActionBar.Title.Inverse"
            app:expandedTitleMarginStart="72dp"
            app:expandedTitleTextAppearance="@style/TextAppearance.AppCompat.Widget.ActionBar.Title.Inverse"
            app:layout_scrollFlags="scroll|exitUntilCollapsed">

            <Your Content>

            <android.support.v7.widget.Toolbar 
                android:id="@+id/app_bar"
                android:layout_width="match_parent"
                android:layout_height="40dp"
                app:layout_collapseMode="pin" />

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

    <include
            layout="@layout/homescreen_scrollview"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_below="@id/layout_header_profile"
            android:layout_marginTop="15dp" />

<Your Content>上是您应该放置字符串的地方。 对不起,我帮不了多忙。你的科迪有点乱,很难理解。

也许如果你编辑只留下重要的代码会有所帮助。

但也许this图书馆可以帮助你。