gpt4 book ai didi

android - 无法滚动 RecyclerView,当尝试在滚动时隐藏工具栏

转载 作者:行者123 更新时间:2023-11-30 00:07:06 27 4
gpt4 key购买 nike

我尝试从this隐藏滚动列表上的工具栏教程
它在我的一个项目中有效,但是当我在另一个项目中尝试 RecycleView 根本不滚动
而不是 RecycleView 工具栏是可滚动的!
我的意思是我可以通过滚动工具栏来隐藏工具栏(上下滑动工具栏)

app_bar_main.xml:

<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="bearing.chavosh.com.bearingdemo.Activity.MainActivity">

<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/app_bar_background"
android:theme="@style/AppTheme.AppBarOverlay"
android:background="#f5f5f5">

<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:layout_scrollFlags="scroll|enterAlways"
android:theme="@style/AppTheme.AppBarOverlay"
app:theme="@style/ThemeOverlay.AppCompat.Light"
app:popupTheme="@style/AppThemePopupOverlayLight">


<bearing.chavosh.com.bearingdemo.Utility.MyTextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="ارسال موقعیت"
android:textSize="17sp"
android:textColor="#000000"
android:layout_gravity="center"
android:id="@+id/toolbar_title" />

</android.support.v7.widget.Toolbar>

<View
android:layout_width="match_parent"
android:layout_height="0.25dp"
android:id="@+id/viewShadow"
android:background="#BBBBBB"/>

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

<include layout="@layout/content_main"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
android:layout_height="match_parent"
android:layout_width="match_parent" />


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

content_main.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"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:background="#f5f5f5"
tools:context="bearing.chavosh.com.bearingdemo.Activity.MainActivity"
tools:showIn="@layout/app_bar_main">

<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/llBarsList">

<include layout="@layout/loads_list"
android:layout_height="match_parent"
android:layout_width="match_parent" />

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

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

load_list.xml 包含在上面的源代码中:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:background="#f5f5f5"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:showIn="@layout/content_main">

<android.support.design.widget.TabLayout
android:id="@+id/tabs"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#f5f5f5"
app:tabIndicatorColor="#0067A5"
app:tabIndicatorHeight="2dp"
app:tabMode="scrollable"
app:tabGravity="center"/>

<View
android:layout_width="match_parent"
android:layout_height="0.25dp"
android:layout_below="@+id/tabs"
android:id="@+id/viewShadow"
android:background="#BBBBBB"/>

<android.support.v4.view.ViewPager
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@+id/viewShadow"
android:id="@+id/vp_bars_list" />

</RelativeLayout>

我没有找到任何答案,我正在研究它一天
任何帮助,请

最佳答案

它不能正常工作,因为你通过包含布局把事情搞砸了。您已将 load_list xml 包含在 content_main xml 中,但 loads_list xml 包含 TabLayout 一些 ViewViewPager 以及您在 AppBarLayout 中放入 <include layout="@layout/loads_list"/> 的所有内容。

AppBarLayout 可以包含 TabLayoutViewPager 会把事情搞砸。然后在 app_main 里面你有另一个 AppBarLayout 。所以直接把TabLayout放到app_main下面的Toolbar xml中。并在 ViewPager 中包含它们下方的 CoordinatorLayout 。您可以摆脱其中一个不必要的 xml。

关于android - 无法滚动 RecyclerView,当尝试在滚动时隐藏工具栏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48775819/

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