使用材料样式的搜索栏来预制棒棒糖

时间:2015-08-26 15:56:03

标签: android material-design

我有一个不以棒棒糖为目标的应用程序。

我需要在棒棒糖中制作SeekBar

如何在SeekBar上应用此类主题或自行创建?

1 个答案:

答案 0 :(得分:0)

你可以custom library

示例:

<org.adw.library.widgets.discreteseekbar.DiscreteSeekBar
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        app:dsb_min="2"
        app:dsb_max="15"
/>

另一个图书馆是MaterialDesign

实施例

<com.gc.materialdesign.views.Slider
                android:id="@+id/slider"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:background="#1E88E5"
                materialdesign:max="50"
                materialdesign:min="0"
                materialdesign:showNumberIndicator="true"/>