带有 RecyclerView 的片段:java.lang.IllegalArgumentException:报废或附加的视图可能不会被回收。 isScrap:false isAttached:tru
Posted
技术标签:
【中文标题】带有 RecyclerView 的片段:java.lang.IllegalArgumentException:报废或附加的视图可能不会被回收。 isScrap:false isAttached:true【英文标题】:Fragment with RecyclerView : java.lang.IllegalArgumentException: Scrapped or attached views may not be recycled. isScrap:false isAttached:true 【发布时间】:2015-08-22 00:21:35 【问题描述】:我不断收到 java.lang.IllegalArgumentException:报废或附加的视图可能无法回收。 isScrap:false isAttached:true 将 Fragment 与 RecyclerView 一起使用时。 我只有 1 个 Activity 在多个片段之间切换。在活动的 onCreate 上,我设置了默认片段,该片段恰好实现了与文档中完全相同的 RecyclerView。在活动启动时,我 get java.lang.IllegalArgumentException:报废或附加的视图可能无法回收。 isScrap:false isAttached:true 。
问题是,如果我在开始时加载一个空的片段容器,然后使用 RecyclerView 导航到片段,它可以正常工作。 另外,我不使用 android:animateLayoutChanges 或 notifyDataSetChanged() 像 here 目前我在 Fragment 的 onResume() 方法中设置了 RecyclerView。我尝试将其切换到其他生命周期方法,但没有运气。
感谢任何帮助。
谢谢
我只添加了相关代码sn-ps。我相信这在某种程度上与生命周期相关,如果我不在 Activity 的 onCreate() 中设置片段,它就可以工作。当我有一个 ListView 而不是 RecyclerView 时,它起作用了。 我没有发布 RecyclerView 的代码,因为它与文档中的相同。
Activity 的 onCreate
public void onCreate(Bundle savedInstanceState)
Log.d(TAG,"### onCreate ###");
super.onCreate(savedInstanceState);
setContentView(R.layout.efficientix_activity_layout);
if(savedInstanceState != null)
checkedSideMenuItemLabel = savedInstanceState.getInt("checkedSideMenuItemLabel");
//Init components
initActionBar(checkedSideMenuItemLabel,savedInstanceState);
initSideMenuArrayAdapter();
initSideMenu(checkedSideMenuItemLabel,savedInstanceState);
initActionBarDrawerToggle();
fragmentManager = this.getSupportFragmentManager();
if(savedInstanceState == null)
//Set default fragment upon activity creation.
FragmentTransaction fragmentTransaction = fragmentManager.beginTransaction();
DashboardFragment df = new DashboardFragment();
fragmentTransaction.replace(R.id.fragment_container,df,DashboardFragment.class.toString());
fragmentTransaction.commit();
Fragment 的 onResume()
public void onResume()
super.onResume();
if (recylerViewLayoutManager == null)
recylerViewLayoutManager = new LinearLayoutManager(this.getActivity());
recylerView.setLayoutManager(remindersLayoutManager);
initRecylerViewAdapter();
recylerView.setAdapter(recylerViewAdapter);
片段布局
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_
android:layout_>
<android.support.v7.widget.RecyclerView android:id="@+id/myRecyclerView" style="@style/Main_Content_List_View"/>
</LinearLayout>
Activity 的布局
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:efficientix="http://schemas.android.com/apk/res-auto"
android:orientation="vertical"
android:layout_
android:layout_>
<!-- The actionbar toolbar -->
<include layout="@layout/actionbar_toolbar"/>
<android.support.v4.widget.DrawerLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/menu_layout"
android:layout_
android:layout_>
<LinearLayout android:layout_ android:layout_
android:id="@+id/fragment_container" android:orientation="vertical">
</LinearLayout>
<include layout="@layout/side_menu_layout"/>
</android.support.v4.widget.DrawerLayout>
</LinearLayout>
RecyclerView 项目布局
<?xml version="1.0" encoding="utf-8"?>
<android.widget.TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
style="@style/Main_Content_Table_Layout_List_Item">
<TableRow style="@style/Main_Content_Table_Row_List_Item">
<TextView android:id="@+id/description"
style="@style/Main_Content_TextView" />
<ImageView android:id="@+id/category"
style="@style/Main_Content_ImageView"/>
</TableRow>
<TableRow style="@style/Main_Content_Table_Row_List_Item">
<TextView android:id="@+id/alert_date"
style="@style/Main_Content_TextView" />
<TextView android:id="@+id/type"
style="@style/Main_Content_TextView" />
</TableRow>
</android.widget.TableLayout>
【问题讨论】:
能否添加活动的源代码、片段和布局? 【参考方案1】:好的,我发现问题出在哪里。在我的 ViewHolder 中,除了布局视图之外,我还有一个 ORMlite 实体(可能是任何不属于布局的对象)。问题是 ViewHolder 的 equals() 和 hashcode() 方法基于为空的实体。它为 null 的原因是因为使用 RecyclerView 您无法访问 onCreateViewHolder() 中的数据位置,而只能访问 onBindViewHolder() 中的数据位置。在我的情况下,适配器数据是 ORMlite 实体的列表,我想将实体捆绑在持有人内。 (还是得想办法做到这一点……)
在这种情况下,我期待 NullPointerException。我设法通过调用 holder.setIsRecyclable(true) 来获得 NullPointerException。
希望这可以帮助其他有需要的人..
谢谢
【讨论】:
【参考方案2】:当我在 ViewHolder 中为 Recycler View 适配器使用自定义对象时,我看到了这种情况。
为了解决这个问题,我清除了自定义对象,在我的例子中是适配器的 onViewRecycled(ViewHolder holder) 中的计时器,如下所示:
public void onViewRecycled(ViewHolder holder)
if(holder instanceof EntityViewHolder)
if(((EntityViewHolder)holder).timer != null)
((EntityViewHolder) holder).timer.cancel();
super.onViewRecycled(holder);
这修复了错误。
【讨论】:
以上是关于带有 RecyclerView 的片段:java.lang.IllegalArgumentException:报废或附加的视图可能不会被回收。 isScrap:false isAttached:tru的主要内容,如果未能解决你的问题,请参考以下文章
我无法从另一个带有 recyclerview.adaper 的片段中打开带有 recyclerview.adapter 的片段
带有 RecyclerView 的 SwipeRefreshLayout 在片段中不起作用