如何预览androidx.recyclerview?

时间:2019-08-01 08:21:01

标签: android android-recyclerview androidx

我不知道要在android x中添加Recycler View。
它只显示我:

https://ibb.co/W08gzdZ

3 个答案:

答案 0 :(得分:1)

清理并重建项目将解决

答案 1 :(得分:0)

  <androidx.recyclerview.widget.RecyclerView
            android:id="@+id/recyclerView"
            android:layout_width="match_parent"
            android:layout_height="match_parent" />

,对于Java部分

recyclerView.setLayoutManager(new LinearLayoutManager(this, RecyclerView.VERTICAL, false));
recyclerView.setAdapter(YOUR_ADAPTER);

答案 2 :(得分:0)

在您的根元素中添加xmlns:tools属性,然后将tools:listitem添加到您的RecyclerView

<RootTag
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools">

    <androidx.recyclerview.widget.RecyclerView
            ...
            app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager"
            tools:listitem="@layout/my_list_item" />

</RootTag>