Android ShowCase视图是否有材质设计规范?

Android ShowCase视图是否有材质设计规范?,android,material-design,Android,Material Design,我想在我的应用程序上实现材质设计,我需要一个showcase视图来介绍它的一些部分。现在我注意到,在材料设计网站上没有上述视图的规范。我也找不到任何创建自定义“物化”Showcase视图的开发人员 你们知道有一个网页向我展示了如何在此视图上实施材料设计吗?文档尚未更新,但以下是我在我的应用程序上所做的: <!-- *** SHOWCASE *** --> <style name="CustomShowcaseMaterial" parent="ShowcaseView">

我想在我的应用程序上实现材质设计,我需要一个showcase视图来介绍它的一些部分。现在我注意到,在材料设计网站上没有上述视图的规范。我也找不到任何创建自定义“物化”Showcase视图的开发人员


你们知道有一个网页向我展示了如何在此视图上实施材料设计吗?

文档尚未更新,但以下是我在我的应用程序上所做的:

<!-- *** SHOWCASE *** -->
<style name="CustomShowcaseMaterial" parent="ShowcaseView">
    <item name="sv_backgroundColor">?mainColor</item>
    <item name="sv_showcaseColor">?accentColor</item>
    <item name="sv_buttonText">@string/ok</item>
    <item name="sv_titleTextAppearance">@style/CustomTitleMaterial</item>
    <item name="sv_detailTextAppearance">@style/CustomTextMaterial</item>
</style>

<style name="CustomTitleMaterial" parent="TextAppearance.ShowcaseView.Title.Light">
    <item name="android:textColor">#ffffff</item>
</style>

<style name="CustomTextMaterial" parent="TextAppearance.ShowcaseView.Detail.Light">
    <item name="android:textColor">#ffffff</item>
</style>

我知道这是一个有点老的问题,但所需的材料设计规格被称为


还有一个很好的库,名为,它实现了这些指导原则

你试过用谷歌搜索它吗??这里是文档:或添加图像或链接,向我们展示您的design@Rajan没有实现。但是谢谢。我也在找类似的东西。我实现了amlcurran/ShowcaseView,但它有点过时。将继续寻找更好的东西
new ShowcaseView.Builder(getActivity())
                .setTarget(target)
                .setStyle(R.style.CustomShowcaseMaterial)
                .setContentTitle(R.string.showcase_title)
                .setContentText(R.string.showcase_message)
                .hideOnTouchOutside()
                .withMaterialShowcase()
                .build();