我正在尝试实现pull刷新,但是我遇到SwipeRefreshLayout没有包装子视图高度的问题.在视图预览和实时构建中,它看起来具有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中放置一个单一的LinearLayout.唯一似乎阻止滑动布局高度为0的东西是静态设置它但我希望它基于子视图的高度是动态的.
这里有什么我想念的吗?似乎SwipeRefreshLayout可能存在错误,因为将其替换为也包含内容的LinearLayout可以按预期工作.
解决方法
问题是你的SwipeRefreshLayout在工具栏和AppBarLayout中.你必须用另一个布局包装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>