我有一个案例需要在RecyclerView
内NestedScrollView
。
问题是在init方法onCreateViewHolder
和onBindViewHolder
期间调用列表中的每个项目(例如100个项目)。
因此屏幕上没有回收视图,而在更复杂的情况下,我的性能存在很大问题。
我Activity
的代码:
public class MyActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
final RecyclerView recyclerView = findViewById(R.id.recycler_view);
recyclerView.setLayoutManager(new LinearLayoutManager(this));
recyclerView.setAdapter(new MyListAdapter());
}
}
我.xml
的代码:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
android:id="@+id/refresh"
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v4.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="true">
<android.support.v7.widget.RecyclerView
android:id="@+id/recycler_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:nestedScrollingEnabled="false"/>
</android.support.v4.widget.NestedScrollView>
</RelativeLayout>
我的适配器代码:
public class MyListAdapter extends RecyclerView.Adapter<MyListAdapter.Holder>{
@Override
public Holder onCreateViewHolder(ViewGroup parent, int viewType) {
final View view = LayoutInflater.from(parent.getContext()).inflate(R.layout.item, parent, false);
Log.d("TESTING", "onCreate: " + view.hashCode());
return new Holder(view);
}
@Override
public void onBindViewHolder(Holder holder, int position) {
Log.d("TESTING", "onBind position: " + position + ", view: " + holder.view.hashCode());
holder.setContent(position % 2 == 0 ? R.color.colorPrimary : R.color.colorAccent);
}
@Override
public int getItemCount() {
return 100;
}
class Holder extends RecyclerView.ViewHolder {
private View view;
public Holder(View itemView) {
super(itemView);
view = itemView;
}
public void setContent(int colorRes) {
view.setBackgroundResource(colorRes);
}
}
}
在初始化期间我有这个日志:
onCreate: 147045034
onBind position: 0, view: 147045034
onCreate: 235006520
onBind position: 1, view: 235006520
onCreate: 16439158
onBind position: 2, view: 16439158
onCreate: 84373988
onBind position: 3, view: 84373988
onCreate: 146076930
onBind position: 4, view: 146076930
onCreate: 12306512
onBind position: 5, view: 12306512
onCreate: 167862094
onBind position: 6, view: 167862094
onCreate: 220010876
... logs for items 7 - 94
onCreate: 189894540
onBind position: 95, view: 189894540
onCreate: 121777898
onBind position: 96, view: 121777898
onCreate: 38672504
onBind position: 97, view: 38672504
onCreate: 210522038
onBind position: 98, view: 210522038
onCreate: 243811364
onBind position: 99, view: 243811364
答案 0 :(得分:3)
之前我遇到过这个问题,根据我的发现,我们无法进行此设置并让RecyclerView实际回收视图。
RecyclerView通过询问其父视图的大小来计算它必须显示的视图数量 ScrollView要求其子项对其所有视图进行充气,以便它可以计算自己的高度,并查看它应该能够滚动多少。
这会导致冲突,因此这意味着RecyclerView会为其所有子视图充气,这基本上会使RecyclerView无效。
我的解决方法是让所有元素成为RecyclerView的一部分,然后为不同的视图类型设置不同的视图。从而消除了ScrollView。
答案 1 :(得分:0)
我能够通过将RecyclerView封装在其他几种布局中来解决此问题。在我的情况下,NestedScrollView的原因是支持AppbarLayout和嵌套的滚动行为。我正在将片段加载到NestedScrollView中,该片段通常包含一个recyclerview。
这里的关键似乎是ConstraintLayout与FrameLayout相结合。
<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.NestedScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/parent_nested_scroll"
android:fillViewport="true"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<LinearLayout
android:id="@+id/fragmentHolder"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<android.support.constraint.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
>
<FrameLayout
android:layout_width="0dp"
android:layout_height="0dp"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent">
<android.support.v7.widget.RecyclerView
android:id="@+id/recyclerView"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
</FrameLayout>
</android.support.constraint.ConstraintLayout>
</LinearLayout>
</android.support.v4.widget.NestedScrollView>