Recycleview错过了其他组件

时间:2015-07-13 17:02:46

标签: android

我有一个像这样的Recycleview:

    <TextView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:gravity="center"
        android:text="Swipe to update" />

        <android.support.v4.widget.SwipeRefreshLayout
           android:id="@+id/listNoticiaSwiper"
           android:layout_width="match_parent"
           android:layout_height="wrap_content">

           <android.support.v7.widget.RecyclerView
              android:id="@+id/noticia_list"
              android:layout_width="match_parent"
              android:layout_height="match_parent"
              android:scrollbars="vertical" />
      </android.support.v4.widget.SwipeRefreshLayout>

当我使用它时:

@Override
public RecyclerView.ViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
    view = LayoutInflater.from(parent.getContext())
            .inflate(layoutView, parent, false);
    view.setOnClickListener(onClickListener);
    RecyclerView.ViewHolder v = new RecyclerView.ViewHolder(view) {
    };
    return v;
}

我的观点没有渲染我的TextView'滑动更新'。我使用Google代码示例。我没有RecyclerView.ViewHolde实现。

有人可以帮我吗?

1 个答案:

答案 0 :(得分:1)

关注此网址 http://javatechig.com/android/android-recyclerview-example 你必须为RecyclerView设置很多东西