找不到以下类: – android.support.wearable.view.WatchViewStub

前端之家收集整理的这篇文章主要介绍了找不到以下类: – android.support.wearable.view.WatchViewStub前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

尝试使用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文件中:

dependencies {
    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

原文链接:https://www.f2er.com/android/431098.html

猜你在找的Android相关文章