我們的目標是利用RecyclerView清單列表方式顯示資料.資訊
像是電話簿一樣可以下滑看到許多聯絡人
這也是我們第一個需要用到第三方套件的地方
首先找到左方專案檔中的build gradle
將這段貼到dependencies中
 dependencies {
        implementation 'com.android.support:recyclerview-v7:28.0.0'
    }
        <android.support.v7.widget.RecyclerView
        android:id="@+id/my_recycler_view"
        android:scrollbars="vertical"
        android:layout_width="match_parent"
        android:layout_height="match_parent"/>