我一直在使用支持库来隐藏/显示我的工具栏,但突然间我发生了一个奇怪的错误。
当我sc起来时,我得到一个空的空间填满我的工具栏界限,然后经过几次轻扫后我终于让工具栏显示在这个空间之上。
挖掘后我发现空间不是任何视图,而是android.support.design.widget.CoordinatorLayout(我通过改变背景来测试)。现在问题似乎是RecyclerView在工具栏占用此尺寸之前减小了尺寸。
这是我的代码
<?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"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:context="com.myapp.ListActivity"
android:background="#F00F00" >
<android.support.design.widget.AppBarLayout
android:id="@+id/myappbarlayout"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:fitsSystemWindows="true"
android:theme="@style/AppTheme.AppBarOverlay">
<android.support.v7.widget.Toolbar
android:id="@+id/mytoolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:layout_scrollFlags="scroll|enterAlways"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light" />
</android.support.design.widget.AppBarLayout>
<android.support.v7.widget.RecyclerView
android:id="@+id/list_results"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:listSelector="@drawable/listselection"
android:background="@color/primary_light"
app:layout_behavior="@string/appbar_scrolling_view_behavior" >
</android.support.v7.widget.RecyclerView>
<TextView
android:id="@+id/noitems"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_centerInParent="true"
android:textColor="@color/primary_text"
android:text="No items "
android:gravity="center"
android:visibility="gone"/>
</android.support.design.widget.CoordinatorLayout>