隐藏工具栏代码:
View toolbar = findViewById(R.id.toolbar);
toolbar.animate()
.translationY(-toolbar.getHeight())
.setInterpolator(new LinearInterpolator());
工具栏xml
<android.support.design.widget.AppBarLayout
android:id="@+id/toolbar_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/AppTheme.AppBarOverlay">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:popupTheme="@style/AppTheme.PopupOverlay" />
</android.support.design.widget.AppBarLayout>
<View
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
/>
我想滑出工具栏(隐藏它)并将View调整到顶部。 我想做的不是滚动,而是任何事件(点击)。 上面代码的问题是工具栏隐藏但仍然是AppBarLayout的空位。 怎么做?
答案 0 :(得分:0)
我找到了一个理由。
这是因为:app:layout_behavior="@string/appbar_scrolling_view_behavior"
删除它会修复空白区域问题,但是您必须修复该底部视图的上边距。