gpt4 book ai didi

android - PreferenceFragment 在 CollapsingToolbarLayout 中没有滚动

转载 作者:塔克拉玛干 更新时间:2023-11-02 19:53:48 26 4
gpt4 key购买 nike

我对 PreferenceFragment 和 CollapsingToolbarLayout 有疑问。我有一个基本布局:

<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:id="@+id/mainLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".activities.base.BaseActivity">

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

<android.support.design.widget.CollapsingToolbarLayout
android:id="@+id/ctlLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_scrollFlags="scroll|exitUntilCollapsed">

<android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
android:minHeight="?attr/actionBarSize"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
app:layout_collapseMode="pin"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"></android.support.v7.widget.Toolbar>

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

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

<FrameLayout
android:id="@+id/fragment_container"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
android:nestedScrollingEnabled="true"/>

<android.support.design.widget.FloatingActionButton
android:id="@+id/fabFav"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginRight="85dp"
android:src="@android:drawable/ic_menu_save"
app:layout_anchor="@id/appbarLayout"
app:layout_anchorGravity="bottom|right|end"
android:visibility="gone" />

<android.support.design.widget.FloatingActionButton
android:id="@+id/fabShare"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="@dimen/fab_margin"
android:src="@android:drawable/ic_menu_share"
app:borderWidth="0dp"
app:layout_anchor="@id/appbarLayout"
app:layout_anchorGravity="bottom|right|end"
android:visibility="gone" />

<fragment
android:id="@+id/search_fragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:name="com.eventum.raedictionary.fragments.SearchFragment"
tools:layout="@layout/fragment_search"/>

问题是,当我使用 PreferenceFragment 扩展 Framelayout 时,滚动不起作用,但使用普通 Fragment 时可以正常工作。

        BaseSettingFragment settingsFragment = new BaseSettingFragment();

fragmentTransaction = getFragmentManager().beginTransaction();

fragmentTransaction.setCustomAnimations(R.transition.fade_in, R.transition.fade_out);

fragmentTransaction.replace(R.id.fragment_container, settingsFragment);

fragmentTransaction.commit();

我还没有找到解决这个问题的办法,谁能帮帮我?

提前谢谢你。

PD:对不起我的英语。

最佳答案

PreferenceFragment 基于 ListView,不支持 CollapsingToolbarLayout 所需的嵌套滚动 API。您可以改为使用 Preference Support LibraryPreferenceFragmentCompat ,它基于 RecyclerView 并且确实支持所需的嵌套滚动 API。

关于android - PreferenceFragment 在 CollapsingToolbarLayout 中没有滚动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33984301/

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