尝试使用Android Wear时,我在Android Studio上的项目中出现此错误:
The following classes could not be found:
– android.support.wearable.view.WatchViewStub (Fix Build Path,Create Class)
这会导致这些错误:
Error:(2) No resource identifier found for attribute ‘rectLayout’ in
package…Error:(2) No resource identifier found for attribute
’roundLayout’ in package…
我怎么能解决这个问题?谢谢!
最佳答案
当您使用Android Studio Project Wizard创建可穿戴应用程序时,会自动包含一个非官方UI库.您还可以使用以下依赖项声明将库添加到build.gradle文件中:
原文链接:https://www.f2er.com/android/431098.htmldependencies {
compile fileTree(dir: 'libs',include: ['*.jar'])
compile 'com.google.android.support:wearable:+'
compile 'com.google.android.gms:play-services-wearable:+'
}
我在build文件夹下创建了一个build.gradle文件,添加了这些依赖项行,一切都很顺利.
http://developer.android.com/training/wearables/apps/layouts.html#UiLibrary