相关疑难解决方法(0)

android:recyclerview中的条目

我使用listview了以下条目属性:

<ListView
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:entries="@array/fi"/>
Run Code Online (Sandbox Code Playgroud)

现在我正在将其转换为 RecyclerView

<android.support.v7.widget.RecyclerView
    android:id="@+id/rv"
    android:layout_width="match_parent"
    android:layout_height="match_parent" />
Run Code Online (Sandbox Code Playgroud)

我想知道我们是否有android:entries属性RecyclerView?或者任何其他属性而不是条目?

android android-recyclerview android-databinding

37
推荐指数
3
解决办法
3783
查看次数