项目引用包appcompat从1.1.1升级到1.4.1
升级前
implementation 'androidx.appcompat:appcompat:1.1.0'
xml布局中使用androidx.swiperefreshlayout.widget.SwipeRefreshLayout正常
升级后
implementation 'androidx.appcompat:appcompat:1.4.1'
xml布局中使用androidx.swiperefreshlayout.widget.SwipeRefreshLayout变红报错
在build.gradle中需单独引入swiperefreshlayout包
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
重新构建即可