Skip to content

Commit

Permalink
[TASK] Committing README.md for uploading to GitHub
Browse files Browse the repository at this point in the history
  • Loading branch information
rishabhmhjn committed May 26, 2013
1 parent ad748e6 commit ebab9de
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 0 deletions.
41 changes: 41 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
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](#SeekBarWithText)

_more to come... please contribute your views too..._

<a name="SeekBarWithText" />
SeekBarWithText
---------------
Seekbar that changes the value of text upon sliding.

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

<img src="http://i.imgur.com/rDbIGDu.png" alt="SeekBarWithText screenshot" style="width: 200px;"/>

### simple xml implementation

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

### custom xml layout

```xml
<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>
```
1 change: 1 addition & 0 deletions example/.classpath
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,6 @@
<classpathentry kind="src" path="gen"/>
<classpathentry kind="con" path="com.android.ide.eclipse.adt.ANDROID_FRAMEWORK"/>
<classpathentry kind="con" path="com.android.ide.eclipse.adt.LIBRARIES"/>
<classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.DEPENDENCIES"/>
<classpathentry kind="output" path="bin/classes"/>
</classpath>

0 comments on commit ebab9de

Please sign in to comment.