gpt4 book ai didi

android - 页面查看器中的 fragment 替换不适用于 API 21

转载 作者:行者123 更新时间:2023-11-29 01:30:17 25 4
gpt4 key购买 nike

我有一个页面查看器,API 21 上发生了一些非常奇怪的事情(它适用于 API 17)。

在查看器的第一页上有一个链接可以加载第二页并替换其中的 fragment 。我第一次点击链接并加载第二页它工作正常,但如果我在加载第三页后点击链接, fragment 替换不起作用,我最终得到第二个屏幕,其中没有 fragment .

这是设置第二页的代码的简化版本:

ScreenSlidePagerAdapter adapter = (ScreenSlidePagerAdapter) sPager.getAdapter();
// Set second page in the viewer
if (adapter.getCount() != 2) {
adapter.setCount(2);
adapter.notifyDataSetChanged();
}
SecondPageFragment frag2 = new SecondPageFragment();
sFragmentManager.beginTransaction().replace(R.id.container_page2, frag2, “Frag2TAG”).commit();
sPager.setCurrentItem(1);

与 API 17 相比,为什么替换在 API 21 上的工作方式不同?以前有人遇到过类似的问题吗?这似乎是相关的,但没有解决方案:fragments-transaction-replace-on-api-21-is-staying-behind

编辑:SecondPageFragment 的代码只是一个 fragment :

public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle saved_instance_state) {
ViewGroup rootView = (ViewGroup) inflater.inflate(R.layout.fragment_page2, container, false);

return rootView;
}

这是布局 fragment_page2:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:id="@+id/container_page2">

最佳答案

新关系!在我看来,FragmentPagerAdapter 类中存在错误。查看 SO 链接 @ Replace Fragment inside a ViewPager .由于您对“我第一次单击链接并加载第二页它工作正常...”的评论,我认为它与 getItemId() 有关,可能必须覆盖它。

就我个人而言,我在 Fragment 中使用过 PagerAdapter,将来可能会使用 FragmentPagerAdapter,因为它结合了这两个类并且应该更容易。

编辑:您的 ID container_page2 可能使用了正确的表单和布局文件。但是,如果你想将它与 replace() 一起使用,你应该使用相同的一致 UI 元素 ID。否则 FragmentManager 将根据容器 View ID 管理 fragment ,这让我感到困惑。

我有一个 fragment 的布局示例。它是 sample_content_fragment,一个嵌套在 LinearLayout 中的 FrameLayout。 fragment 的示例布局:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/sample_main_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
>

<FrameLayout
android:id="@+id/sample_content_fragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
/>
</LinearLayout>

随时通知我们。我想知道。

关于android - 页面查看器中的 fragment 替换不适用于 API 21,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31619458/

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