使用CoordinatorLayout和AppBarLayout时存在更多问题。
我正在尝试实现向下滚动时让工具栏滚出屏幕并在向上滚动时返回屏幕的基本功能。
然而,我当前的设置显示了一个问题:不仅工具栏没有滚动,ListView似乎在底部渲染屏幕。它几乎就像是被AppBarLayout高度所抵消。
这是一个描述这个问题的gif,请注意最终项目也会被切断,ScrollBar也会关闭:
我的布局很标准:
<?xml version="1.0" encoding="utf-8"?>
<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"
android:background="@color/background">
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?android:attr/actionBarSize"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
android:background="@color/orange"
app:layout_scrollFlags="scroll|enterAlways"/>
</android.support.design.widget.AppBarLayout>
<android.support.v4.widget.SwipeRefreshLayout
android:id="@+id/swipeToRefresh"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<ExpandableListView
android:id="@+id/listView"
android:groupIndicator="@android:color/transparent"
android:layout_width="match_parent"
android:dividerHeight="0px"
android:layout_height="match_parent"/>
</android.support.v4.widget.SwipeRefreshLayout>
</android.support.design.widget.CoordinatorLayout>
答案 0 :(得分:9)
CoordinatorLayout仅适用于RecyclerView或NestedScrollView.Try在NestedScrollView中包装您的ExapandableListView或使用以下代码为ExpandableListView创建NestedScrollingEnable。
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
expandablelistView.setNestedScrollingEnabled(true);
}else {
CoordinatorLayout.LayoutParams params = (CoordinatorLayout.LayoutParams) mSwipeLayout.getLayoutParams();
params.bottomMargin = heightOfAppBarCompat;
mSwipeLayout.setLayoutParams(params);
}
编辑您可以使用else语句在21之前按预期进行滚动。
答案 1 :(得分:0)
我会把它写成评论,但就可读性而言,我会将此信息作为答案。如果它不起作用,请告诉我,我将删除它... 我想你应该告诉你的工具栏如何互动。在我的应用程序中,工具栏看起来像这样:
.Term("person.name", "john")
请注意“app:layout_collapseMode”
答案 2 :(得分:0)
<thead>