迁移到 androidX 后出现运行时错误

runtime error after migrating to androidX

我只是想构建一个签名的 apk,然后我遇到了很多错误,我意识到其中大部分错误可以通过迁移到 android X 来解决,但是我在迁移到 androidX:

    java.lang.RuntimeException: Unable to start activity ComponentInfo{com.test.hamed/com.test.hamed.cups}: android.view.InflateException: Binary XML file line #18: Binary XML file line #18: Error inflating class android.support.design.widget.AppBarLayout

其中提到的第 18 行是:

 <android.support.design.widget.
     android:id="@+id/cupsAppBar"
     android:layout_width="match_parent"
     android:layout_height="wrap_content"
     android:theme="@style/AppTheme.AppBarOverlay">

并且在 Java 中是 onCretae 中的这一行:

protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.cups); // <= this line
        .
        .
        .

我搜索了很多,有些人建议添加以下行可以解决问题,但事实并非如此:

    implementation 'com.android.support:design:28.0.0'

这是什么问题,我该如何解决? 谢谢

AppBarLayout 的正确用法现在是 com.google.android.material.appbar.AppBarLayout