Android Studio 无法识别实现
Android Studio don't recognize implementetion
我想添加 CordinatorLayout 的依赖项,当我添加它时 Android Studio 不识别依赖项,我不知道是否是版本问题,我必须实现应用程序.implementation "androidx.coordinatorlayout:coordinatorlayout:1.1.0"
感谢您的支持
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:context="toDoListToolBarIconAdapter">enter code here
首先,您应该尽量避免在您的实现中使用 ",因为这是在使用 compile 之前完成的.
将 implementation "androidx.coordinatorlayout:coordinatorlayout:1.1.0"
更改为 implementation 'androidx.coordinatorlayout:coordinatorlayout:1.1.0'
。
应该可以解决您的问题!
另外,在 xml 中使用协调器布局的正确过程是:
<androidx.coordinatorlayout.widget.CoordinatorLayout android:layout_height="match_parent"
android:layout_width="match_parent"
xmlns:android="http://schemas.android.com/apk/res/android"/>
如果没有,则通过更新在问题中提及整个 Build.gradle 文件。
干杯,
therbtcdr
我想添加 CordinatorLayout 的依赖项,当我添加它时 Android Studio 不识别依赖项,我不知道是否是版本问题,我必须实现应用程序.implementation "androidx.coordinatorlayout:coordinatorlayout:1.1.0"
感谢您的支持
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:context="toDoListToolBarIconAdapter">enter code here
首先,您应该尽量避免在您的实现中使用 ",因为这是在使用 compile 之前完成的.
将 implementation "androidx.coordinatorlayout:coordinatorlayout:1.1.0"
更改为 implementation 'androidx.coordinatorlayout:coordinatorlayout:1.1.0'
。
应该可以解决您的问题!
另外,在 xml 中使用协调器布局的正确过程是:
<androidx.coordinatorlayout.widget.CoordinatorLayout android:layout_height="match_parent"
android:layout_width="match_parent"
xmlns:android="http://schemas.android.com/apk/res/android"/>
如果没有,则通过更新在问题中提及整个 Build.gradle 文件。
干杯, therbtcdr