嘿,这里我有一个布局,主要有两个Views,一个在顶部供选择,另一个在底部显示内容(ScrollViewListview)。
我想要的行为是,当我滚动内容时,上面的View会折叠或展开(CollapsingToolbarLayout类似)。
目前我用layout_weights实现了整个布局,我不确定如何正确地实现CoordinateLayout来调整视图的大小。
布局如下:

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

<LinearLayout
    android:id="@+id/preview_wrapper"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="0dp">

<android.support.v4.view.ViewPager
    android:id="@+id/view_pager_preview"
    android:layout_width="match_parent"
    android:layout_height="0dp"
    android:layout_weight="0.4">

</android.support.v4.view.ViewPager>


<CustomIndicator
    android:id="@+id/pager_indicator"
    android:layout_width="match_parent"
    android:layout_height="0dp"
    android:layout_weight="0.1"/>
</LinearLayout>

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="0dp"
    android:layout_weight="0.5">

<android.support.v4.view.ViewPager
    android:id="@+id/view_pager_content"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_below="@id/view_pager_preview">
<ScrollView
    android:id="@+id/scroll_view"
    android:focusable="false"
    android:layout_width="match_parent"
    android:layout_height="match_parent">


</ScrollView>
</android.support.v4.view.ViewPager>
</LinearLayout>
</LinearLayout>

如果有人能解释一下在这种情况下如何实现CoordinateLayoutCollapsingToolbarLayoutAppBarLayout,我们会很高兴的。

最佳答案

如果你想让你的顶部塌陷,我会把它放在ViewPager的顶部。像这样的:

<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.design.widget.AppBarLayout
    android:id="@+id/main.appbar"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
    android:fitsSystemWindows="true">
    <android.support.design.widget.CollapsingToolbarLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
        app:layout_scrollFlags="scroll"
        app:contentScrim="?attr/colorPrimary"
        app:layout_collapseMode="pin">
        <android.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            android:background="@color/transparent"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_gravity="bottom"
            app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
            app:layout_collapseMode="parallax">
        </android.support.v7.widget.Toolbar>
      <android.support.v4.view.ViewPager
        android:id="@+id/viewpagerTop"
        android:background="@android:color/white"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"/>
    </android.support.design.widget.CollapsingToolbarLayout>
</android.support.design.widget.AppBarLayout>
<android.support.v4.view.ViewPager
    android:id="@+id/viewpagerBottom"
    android:background="@android:color/white"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    app:layout_behavior="android.support.design.widget.AppBarLayout$ScrollingViewBehavior"/>

关于android - CoordinateLayout使用 subview 折叠LinearLayout,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/36689031/

10-08 21:38