gpt4 book ai didi

android - 在 fragment 中滚动 ListView 时向上移动 View

转载 作者:行者123 更新时间:2023-11-29 20:14:04 26 4
gpt4 key购买 nike

我有以下布局:

<android.support.design.widget.CoordinatorLayout xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"

android:layout_height="match_parent"
android:layout_marginBottom="65dp">

<android.support.design.widget.AppBarLayout
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="@dimen/generic_toolbar_height"
android:background="?attr/colorPrimary"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
app:layout_scrollFlags="scroll|enterAlways"
app:tabIndicatorColor="@android:color/white" />

<LinearLayout
android:id="@+id/cordinator"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<ImageView
android:id="@+id/iv_header"
android:layout_width="match_parent"
android:layout_height="150dp"
android:background="@color/add_item_header_bg"
android:src="@mipmap/ic_shirt" />


<android.support.design.widget.TabLayout
android:id="@+id/tabs"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:tabGravity="fill"
app:tabMode="scrollable" />
</LinearLayout>

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

<android.support.v4.view.ViewPager
android:id="@+id/viewpager"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginBottom="@dimen/generic_fotter"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />


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

在 viewPager 中插入 fragment 的位置,该 fragment 仅包含 listview 。

我的问题:我希望 Image HeaderImage 和 TabLayout 在 listview 的 scrool 上滚动,但是当我尝试检测 listview 的滚动并使 headerImage 和 tabLyaout 消失时,listview 再次重置并因此在 scrolview 中检测到位置 0 因此图像和 lablayout 永远不会向上移动为此请建议下面的任何替代方案是屏幕截图:

enter image description here

最佳答案

我建议您将 ImageView 合并到 CollapsingaToolbar 中,这样做会向上滚动,然后使用 animation 您还可以折叠 TableLayout

关于android - 在 fragment 中滚动 ListView 时向上移动 View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34310636/

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