gpt4 book ai didi

android - 如何在 coordinatorLayout 中垂直放置布局

转载 作者:搜寻专家 更新时间:2023-11-01 09:40:49 25 4
gpt4 key购买 nike

我想在我的 fragment 中实现折叠布局。但是我的 collapsingLayout、framelayout(容器)和 tablayout 的定位就像它们放置在框架布局中一样。
我想在顶部制作 Collapsinglayout,在它下面制作 tablayout,在 tablayout 下面制作框架布局容器,保留折叠动画。(frame布局容器承载由recyclerview组成的各种fragment[因为自定义手势不多,不考虑viewpager])

fragment 布局.xml

<android.support.design.widget.CoordinatorLayout 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:background="@color/appBgColor"
android:clickable="true"
tools:context="com.lunchpoint.fragments.RestaurantFragment"

>
<android.support.design.widget.AppBarLayout
android:id="@+id/id_appbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@android:color/transparent"
android:fitsSystemWindows="true"
>

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

<RelativeLayout
android:layout_width="match_parent"
android:layout_height="310dip"
>
<!--Header layout-->
</RelativeLayout>

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

</android.support.design.widget.AppBarLayout>
<android.support.design.widget.TabLayout
android:id="@+id/tabs"
android:layout_width="match_parent"
android:layout_height="wrap_content"

android:layout_marginEnd="16dip"
android:layout_marginLeft="16dip"
android:layout_marginRight="16dip"
android:layout_marginStart="16dip"
app:tabGravity="fill"
app:tabMinWidth="0dip"
app:tabMode="scrollable"
app:tabPaddingEnd="1dp"
app:tabPaddingStart="1dp"
/>

<FrameLayout

android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="wrap_content"
/>

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

最佳答案

您可以轻松地结合使用 anchor 属性和 layout_gravity 来实现这一点。参见,例如:http://ponshere.in/blog/android-coordinator-layout-gravity-and-alignment/

关于android - 如何在 coordinatorLayout 中垂直放置布局,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39974893/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com