Skip to content

RomanTcv/MaterialSeekBar

Repository files navigation

MaterialSeekBar

GitHub license

Installation

To get a Git project into your build:

Step 1. Add the JitPack repository to your build file

	allprojects {
		repositories {
			...
			maven { url 'https://jitpack.io' }
		}
	}

Step 2.

  dependencies {
	        compile 'com.github.R12rus:MaterialSeekBar:0.0.2'
	}

Usage

Example of usage in xml layout

    <r12.materialseekbar.MaterialSeekBar
        android:id="@+id/seekbar"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:paddingTop="10dp"
        app:alwaysShowBubble="false"
        app:showMinMax="true" />