Advertisement

安卓基础上使用RecyclerView

阅读量:

谷歌开发了一款名为RecyclerView的控件,其功能与ListView类似,但在性能和灵活性方面表现得更为出色。

1.添加依赖项:

复制代码
    implementation 'com.android.support:recyclerview-v7:28.0.0'
    implementation 'com.android.support:appcompat-v7:28.0.0'
    
    
      
      
    

在activity_main.xml文件中构建列表视图

复制代码
    <?xml version="1.0" encoding="utf-8"?>
    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    >
    <androidx.recyclerview.widget.RecyclerView
        android:layout_width="match_parent"
        android:layout_height="mat

全部评论 (0)

还没有任何评论哟~