2017-05-07 109 views
0

我正在尋找一個特定的佈局,我不能在互聯網上找到。它不知何故看起來像CoordinatorTabLayout但滾動向下/向上時沒有崩潰。我創辦這個畫面中,應用「BlackMusicPlayer」它看起來像這樣: enter image description here enter image description hereCoordinatorTabLayout沒有崩潰功能

什麼時候你去挖掘的觀點是擴大圖片。我應該從頭創建一個新的佈局,還是有什麼我可以嗎?謝謝

回答

0

你可以得到appBarLayout參考,並嘗試用摺疊式工具這個

AppBarLayout.LayoutParams p = (AppBarLayout.LayoutParams) toolbar.getLayoutParams(); 
p.setScrollFlags(0); 
toolbar.setLayoutParams(p); 

使用協調佈局,這將保持摺疊式工具總是擴大

0

CoordinatorTabLayout是一個定製的複合控件它可以快速實現TabLayout和CoordinatorLayout的組合。

可能this github sample可以幫到你