CoordinateLayout使用子视图折叠LinearLayout

时间:2016-04-18 08:34:52

标签: android android-layout android-coordinatorlayout

嘿,我有一个主要有两个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,我们会很高兴。

1 个答案:

答案 0 :(得分:1)

如果您希望您的热门ViewPager崩溃,我会将其放在CoordinatorLayout的顶部。像这样:

<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"/>