我正在尝试工具栏和TabLayout,当你滚动循环视图时,它应该像whatsapp应用程序一样隐藏工具栏。我指的是谷歌Blog和Michal Z's Blog。我在主要活动中查看了寻呼机,我正在使用recycleview显示其中的数据列表。
坦率地说,我被新的谷歌设计库所震撼,因为只需一行XML代码就可以改变完整的用户界面和用户界面行为。理想情况下,我们需要在工具栏中添加app:layout_scrollFlags="scroll|enterAlways"
行才能实现此功能。但对我来说它不起作用。我已在API 19和21设备上测试过它。
通过浏览堆栈溢出question question和各种Blog Blog我找到2种方法来实现此功能1.通过向recycleview和2提供滚动侦听器。将可滚动内容放在NestedScrollView
中。但它没有按预期工作。
我认为无需编写任何代码即可。
主要Activity.xml
<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.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:background="@color/colorPrimary"
android:layout_height="?attr/actionBarSize"
app:layout_scrollFlags="scroll|enterAlways"
app:popupTheme="@style/Base.ThemeOverlay.AppCompat.Dark"/>
<android.support.design.widget.TabLayout
android:id="@+id/sliding_tabs"
android:background="@color/colorPrimaryDark"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</android.support.design.widget.AppBarLayout>
<android.support.v4.view.ViewPager
android:id="@+id/viewpager"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"/>
</android.support.design.widget.CoordinatorLayout>
ViewPagerFragment.xml
<android.support.v4.widget.SwipeRefreshLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/swipe_refresh_layout"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@color/windowBackground">
<android.support.v7.widget.RecyclerView
android:id="@+id/order_list"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_alignParentLeft= "true"
android:layout_alignParentStart="true"
android:layout_above="@+id/txtStatus" />
</android.support.v4.widget.SwipeRefreshLayout>
答案 0 :(得分:4)
您的布局似乎是正确的。
检查build.gradle
recyclerView
版22.2.0
中的buildToolsVersion
是否22.0.1
且{{1}}是{{1}}。您需要这样做,因为所有这些新功能都出现在22.2.0版本的支持库中,如here所述。