gpt4 book ai didi

android - AppBarLayout 中的 SwipeRefreshLayout 不包装内容

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:07:34 25 4
gpt4 key购买 nike

我正在尝试实现拉动刷新,但我遇到了 SwipeRefreshLayout 未包装 subview 高度的问题。在 View 预览和实时构建中,它的高度似乎为 0。

布局如下:

<android.support.design.widget.AppBarLayout
android:id="@+id/app_bar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:elevation="0dp">

<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@android:color/transparent"
app:layout_collapseMode="pin">

<android.support.v4.widget.SwipeRefreshLayout
android:id="@+id/swipe_refresh_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content">

<include layout="@layout/child_layout" />

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

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

我也曾尝试使 SwipeRefreshLayout 成为 AppBarLayout 的父级,但没有成功,也尝试过在 SwipeRefreshLayout。唯一阻止滑动布局高度为 0 的方法是静态设置它,但我希望它根据 subview 的高度动态设置。

我在这里缺少什么吗? SwipeRefreshLayout 似乎存在错误,因为将其替换为同样按预期方式包装内容的 LinearLayout

最佳答案

问题是您的 SwipeRefreshLayout 位于 ToolbarAppBarLayout 内。您必须用另一个布局包装 AppBarLayout,并将 SwipeRefreshLayout 放在 AppBarLayout 下方。下面是一个例子。

<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"
xmlns:tools="http://schemas.android.com/tools"
android:fitsSystemWindows="true"
tools:context="com.vsahin.moneycim.View.MainActivity">

<android.support.design.widget.AppBarLayout
android:id="@+id/app_bar_layout"
android:layout_width="match_parent"
android:layout_height="250dp"
android:theme="@style/ThemeOverlay.AppCompat.Dark"
android:fitsSystemWindows="true"
app:expanded="false">

<android.support.design.widget.CollapsingToolbarLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_scrollFlags="scroll|exitUntilCollapsed"
app:contentScrim="?attr/colorPrimary"
android:fitsSystemWindows="true"
android:background="@drawable/gradient_background">

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

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

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

<android.support.v4.widget.SwipeRefreshLayout
android:layout_width="match_parent"
android:layout_height="match_parent">

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

<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>

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

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

关于android - AppBarLayout 中的 SwipeRefreshLayout 不包装内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47801262/

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