-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[TASK] Committing README.md for uploading to GitHub
- Loading branch information
1 parent
ad748e6
commit ebab9de
Showing
2 changed files
with
42 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters