我只是想构建一个签名的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'
问题出在哪里,我该如何解决? 谢谢
答案 0 :(得分:1)
AppBarLayout的正确用法现在为com.google.android.material.appbar.AppBarLayout