我已经开始研究Android材料设计支持库了,作为一个新手,我有一些困惑。而且,需要你的帮助。 :)
1)是否可以将layout_scrollFlags="scroll|enterAlways"
与SearchView
等观点一起使用?
2)我想在SearchView
正下方Toolbar
。我是使用AppBarLayout
实现的,但我想滚动SearchView
而不是Toolbar
滚动SearchView
下方的内容。在layout_scrollFlags="scroll|enterAlways"
上使用SearchView
并不起作用。
3)我们可以在AppBarLayout
中CoordinatorLAyout
和Toolbar
中AppBarLayout
使用多个{{1}}吗?
答案 0 :(得分:0)
是的,但您需要为搜索视图启用嵌套滚动。
SearchView searchViewRef;
NestedScrollingChildHelper mNestedScrollingChildHelper = new NestedScrollingChildHelper(searchViewRef);
mNestedScrollingChildHelper.setNestedScrollingEnabled(true);