AS3.5 添加RecyclerView依赖包

1 在app build.gradle添加依赖关系

implementation 'com.android.support:recyclerview-v7:28.0.0'

2 到XML调用

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

3 注意事项

1调用方法的变化

以前在XML调用是这样的:

<android:support.v7.widget.RecyclerView
... >
</android:support.v7.widget.RecyclerView>

现在是:

<androidx.recyclerview.widget.RecyclerView
...
</androidx.recyclerview.widget.RecyclerView>

从activity的import可以看出:

import androidx.recyclerview.widget.RecyclerView;

4 截图

AS3.5 添加RecyclerView依赖包_第1张图片

AS3.5 添加RecyclerView依赖包_第2张图片

AS3.5 添加RecyclerView依赖包_第3张图片

你可能感兴趣的:(android)