我正在尝试让AppBarLayout只滚动其中一个子节点,而不是在其中滚动ToolBar。
但是,当我从工具栏中删除layout_scrollflags = scroll时,没有任何滚动。
是否可以在AppBarLayout滚动中只有一个视图而不是工具栏?
<android.support.design.widget.CoordinatorLayout
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="?actionBarSize"
android:theme="@style/BarTheme"
app:title="@string/my">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center|start"
android:src="@{ViewModel.showingDropdown ? @drawable/ic_arrow_drop_up_white_24dp : @drawable/ic_arrow_drop_down_white_24dp}"
android:tint="@color/ring_blue"
android:visibility="@{ViewModel != null ? View.VISIBLE : View.GONE}" />
</android.support.v7.widget.Toolbar>
<FrameLayout
android:id="@+id/widget_container"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_scrollFlags="scroll|enterAlways" />
</android.support.design.widget.AppBarLayout>
该代码的结果是没有滚动,但是当我添加layout_scrollflags =滚动到工具栏时,工具栏和FrameLayout滚动,我不想要
答案 0 :(得分:1)
使用折叠工具栏布局...为此...并使工具栏collapse_mode = "pin"
和其他collapse_mode = parallax
要滚动的布局以供参考检查{{3 }}
保持折叠的父级布局 工具栏布局为appBarlayout ..
为其分配滚动标记..
使用所需的collapse_modes (parallax,pin..etc等)定义折叠工具栏布局的子布局