rishabhmhjn / VanityViews

List of re-usable compound views for Android

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

VanityViews for Android

The purpose of this repo is to provide a list of fairly used compound views with all the interdependencies that is repeatedly written by a lot of developers

List of VanityViews

SeekBarWithText

more to come... please contribute your views too...

SeekBarWithText --------------- Seekbar that changes the value of text upon sliding.

Demo: /library/res/layout/vv_seekbars.xml

SeekBarWithText screenshot

simple xml implementation

<in.jasonleon.vanityviews.widget.SeekBarWithText
    android:layout_width="match_parent"
    android:layout_height="wrap_content" />

custom xml layout

<in.jasonleon.vanityviews.widget.SeekBarWithText
    android:layout_width="match_parent"
    android:layout_height="wrap_content" >

    <include
        android:id="@id/vv_custom_include"
        layout="@layout/custom_seekbar" />
</in.jasonleon.vanityviews.widget.SeekBarWithText>

About

List of re-usable compound views for Android


Languages

Language:Java 100.0%