gpt4 book ai didi

android - 滚动时工具栏不隐藏

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:01:55 25 4
gpt4 key购买 nike

尝试使用 appbar_scrolling_view_behavior + 滚动标志隐藏 ListView 滚动上的工具栏,但没有结果,这是 xml 代码,无法理解这有什么问题

<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/activity_main"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.lol.materialdesigntest.MainActivity">

<android.support.design.widget.AppBarLayout
android:id="@+id/app_bar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">

<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="@android:color/holo_orange_light"
app:layout_scrollFlags="scroll|enterAlways"/>

</android.support.design.widget.AppBarLayout>

<ListView
android:id="@+id/list_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"/>

<android.support.design.widget.FloatingActionButton
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:layout_anchor="@id/list_view"
app:layout_anchorGravity="bottom|right"
android:src="@mipmap/ic_launcher"
android:layout_margin="15dp"/>

</android.support.design.widget.CoordinatorLayout>

最佳答案

默认情况下,ListView 没有启用嵌套滚动。使用

ViewCompat.setNestedScrollingEnabled(listView, true);

启用它。

请注意,这将从 lollipop 开始。如果你想支持旧版本的 android,你应该使用 RecyclerView

关于android - 滚动时工具栏不隐藏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43469433/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com