-1
我該如何解決這個錯誤?在android studio中使用庫
Error:(28, 21) No resource found that matches the given name: attr 'android:autofillHints'.
我該如何解決這個錯誤?在android studio中使用庫
Error:(28, 21) No resource found that matches the given name: attr 'android:autofillHints'.
自動填充框架適用於Android SDK 26及更高版本。確保你已經更新你的build.gradle:
compileSdkVersion 26
buildToolsVersion "26.0.0"
defaultConfig {
minSdkVersion 26
targetSdkVersion 26
}
compile 'com.android.support:design:26.+'
android:autofillHints
是框架26版本的一部分。您似乎在使用SDK v25構建您的應用程序。