我在Nestedscrollview中有一个Recyclerview。它显示加载显示我的customadapter的所有内容,但是滚动一些项目远离视线并将其滚动回它们,文本视图将会消失。但是图像视图不会表现得像我在我的Activity onCreate中以这种方式实现了Recyclerview
styles=response.body();
adapter=new DesignerStylesAdapter(styles);
RecyclerView.LayoutManager mLayoutManager = new LinearLayoutManager(DesignerActivity.this,RecyclerView.HORIZONTAL,false);
mLayoutManager.setAutoMeasureEnabled(true);
recyclerView.setLayoutManager(mLayoutManager);
recyclerView.setItemAnimator(new DefaultItemAnimator());
recyclerView.setNestedScrollingEnabled(false);
recyclerView.setAdapter(adapter);
和活动布局文件
<android.support.v4.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:behavior_overlapTop="52dp"
android:fillViewport="true"
android:id="@+id/nestedscrollview"
app:layout_behavior="@string/appbar_scrolling_view_behavior" >
<android.support.v7.widget.RecyclerView
android:id="@+id/recycler_view"
android:scrollbars="vertical"
android:layout_below="@+id/line"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
android:layout_width="match_parent"
android:layout_height="wrap_content">
</android.support.v4.widget.NestedScrollView>
在我的自定义适配器的onBindViewHolder中,我没有在任何视图上调用setVisibility
@Override
public void onBindViewHolder(final ViewHolder holder,final int position){
final Context context = holder.productPic.getContext();
final CustomStyles style=styles.get(position);
holder.productName.setText(style.getName());
holder.productPrice.setText("₦"+ NumberFormat.getNumberInstance(Locale.US).format(style.getCustomPrice()));
Picasso.with(context)
.load(style.getPhoto1())
.into(holder.productPic);
}
有人帮忙,我一直坚持这个问题。