AndroidTagGroup是用于添加标签的小部件。我想在我的应用程序中使用它。我添加了依赖compile 'me.gujun.android.taggroup:library:1.4@aar'
,并将其用作
<me.gujun.android.taggroup.TagGroup
android:id="@+id/tag_group"
style="@style/TagGroup" />
但是布局没有渲染,并且给出了两个错误,
Failed to find style 'tagGroupStyle' in current theme
和Missing styles. Is the correct theme chosen for this layout?
。我找不到与TagGroup相关的任何其他主题,我使用的主题是appTheme。我尝试在styles.xml中定义TagGroup
样式,但没有用。
修改
渲染错误显示在Android studio studio中。即使我构建并运行应用程序,我也无法在应用程序中看到小部件。
修改2
正如@CommonsWare所建议的那样,添加标签后,我可以看到应用程序中的小部件。只剩下问题是渲染问题,从评论中看起来像是android工作室问题。