1.這里將compile修改為implementation
由於我使用的安卓Q版本(29)會出現提醒Version 28 (intended for Android Pie and below) is the last version of the legacy support library, so we recommend that you migrate to AndroidX libraries when using Android Q and moving forward. The IDE can help with this: Refactor > Migrate to AndroidX.會出現版本不兼容問題,這時候查看安卓的編譯版本,將
implementation 'com.android.support:recyclerview-v7:24.1.0-alpha1'中的24改為29就可以了,最后要記得使用Sync進行同步。。。