我想在Android Wear中创建一个曲线布局。这是tutorial。
在此网站中,Google让我创建了一个课程MyLauncherChildLayoutManager extends CurvedChildLayoutManager
,但我在Android工作室中找不到CurvedChildLayoutManager
。
我找到了android.support.wearable.view
的API,这个CurvedChildLayoutManager
类包含在列表中。
这是Api网站:CurvedChildLayoutManager
这是我的模块gradle依赖项
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.google.android.support:wearable:+'
compile 'com.google.android.gms:play-services-wearable:+'
//this provided is auto create when I create my android wear project, I try to annotation it,but also can't find
provided 'com.google.android.wearable:wearable:+'
}
但是在我的Android工作室外部库目录中 - > wearable-2.0.0,我找不到CurvedChildLayoutManager
类。
为什么我找不到?这个可穿戴的库版本是最新版本。 请帮助我,谢谢。
答案 0 :(得分:0)
在SDK管理器中,确保您拥有最新版本的Android支持库和Android支持存储库。然后使用版本2.0.2 :( com.google.android.support:wearable:2.0.2)它应该在那里:)