<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/main_content"
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.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:layout_scrollFlags="scroll|enterAlways"/>
</android.support.design.widget.AppBarLayout>
<android.support.v4.view.ViewPager
android:id="@+id/view_pager"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_above="@+id/tab_bar" />
<com.whl.handytabbar.HandyTabBar
android:id="@+id/tab_bar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:layout_alignParentBottom="true"
android:layout_gravity="bottom"
android:background="@drawable/custom_shadow" />
</android.support.design.widget.CoordinatorLayout>
-1
A
回答
2
工具欄位於AppBarLayout內部,可能位於您的CoordinatorLayout內部,因此應如此工作。
AppBarLayout appBarLayout = (AppBarLayout)findViewById(R.id.appBar);
appBarLayout.setExpanded(true, true);
或者崩潰的工具欄,然後這樣的事情應該工作
AppBarLayout appBarLayout = (AppBarLayout)findViewById(R.id.appBar);
appBarLayout.setExpanded(false, true);
0
請點擊此鏈接,你將在這裏得到答案:
0
你需要這個app:layout_behavior="@string/appbar_scrolling_view_behavior"
在您的滾動查看下面:
<android.support.v7.widget.RecyclerView
android:id="@+id/rvToDoList"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
,我們需要定義AppBarLayout和View 將滾動之間的關聯。向RecyclerView或 添加應用程序:layout_behavior或其他任何能夠嵌套滾動的View,例如NestedScrollView。 支持庫包含一個特殊字符串資源 @ string/appbar_scrolling_view_behavior映射到 AppBarLayout.ScrollingViewBehavior,用於在此特定視圖上發生滾動事件時通知 AppBarLayout。必須在觸發事件的視圖上建立 行爲。
你應該看看This Guide
相關問題
- 1. 工具欄不隱藏/顯示在滾動協調器佈局
- 2. 防止鍵盤佈局隱藏工具欄,但顯示滾動內容
- 3. 隱藏工具欄暫時滾動時
- 4. CollapsingToolbarLayout並滾動時隱藏工具欄
- 5. 隱藏工具欄滾動時recyclerview
- 6. 當用戶滾動時隱藏在導航欄下的內容
- 7. 當在嵌套片段中滾動RecyclerView時隱藏工具欄
- 8. 隱藏工具欄和抽屜滾動
- 9. 工具欄不會在列表中滾動隱藏
- 10. Android工具欄+選項卡布局+抽屜,滾動時隱藏工具欄並將TabLayout置頂部
- 11. 不能老是隱藏工具欄時的WebView滾動
- 12. 工具欄在segue後不會隱藏
- 13. 滾動 - 隱藏內容
- 14. 隱藏滾動內容
- 15. 隱藏內容滾動
- 16. 當在appbar佈局中滾動時協調器佈局的內容不會滾動
- 17. AppBarLayout滾動內容下方工具欄
- 18. 摺疊工具欄不會在依從佈局中滾動時摺疊
- 19. 滾動工具欄不工作在Android使用框架佈局
- 20. 當我選擇自動佈局選項時,ScrollView不會滾動
- 21. 摺疊工具欄向上滾動時隱藏並向下滾動時顯示
- 22. 如何在滾動片段時隱藏工具欄?
- 23. 隱藏工具欄時無法啓用webview的滾動行爲
- 24. 如何隱藏工具欄滾動時使用recyclerView裏面NestedScrollView
- 25. 在android中滾動時隱藏工具欄
- 26. 爲什麼工具欄在滾動時沒有隱藏?
- 27. 使用Coordinator Layout滾動recyclerview時無法隱藏工具欄
- 28. 隱藏工具欄
- 29. 隱藏工具欄
- 30. 如何滾動工具欄和標籤佈局之間的內容
這是一些文檔[https://developer.android.com/reference/android/support/design/widget/AppBarLayout.html#setExpanded(boolean)]供參考。 –