SpannableTextView is a custom TextView
which lets you customize the styling of slice of your text or statment via Spannables
, but without the hassle of having to deal directly with Spannable themselves.
Add this in your build.gradle
repositories {
maven { url 'https://dl.bintray.com/milaptank/SpannableTextView' }
}
dependencies{
compile 'com.milaptank:stv:1.0.0'
}
Examples of different styles. Each one is a single TextView.
Generate the following style:
With the code below:
SpannableTextView stvMarksDown = findViewById(R.id.stvMarksDown);
stvMarksDown.addSlice(new Slice.Builder(" 3.5/10 ")
.backgroundColor(Color.parseColor("#800736"))
.textColor(Color.WHITE)
.setCornerRadius(13)
.build());
stvMarksDown.addSlice(new Slice.Builder(" horrible! ")
.textColor(Color.parseColor("#073680"))
.style(Typeface.BOLD)
.build());
stvMarksDown.display();
Right now you can customize the style of your text by using the following methods, which internally
get converted to the corresponding Spannables
SpannableTextView | Internal Span |
---|---|
textSize | AbsoluteSizeSpan |
textColor | ForegroundColorSpan |
textSizeRelative | RelativeSizeSpan |
backgroundColor | BackgroundColorSpan |
style | StyleSpan |
underline | UnderlineSpan |
strike | StrikethroughSpan |
superscript | SuperscriptSpan |
subscript | SubscriptSpan |
setCornerRadius | RoundedBackgroundSpan(Custom) |
setImageResource | ImageSpan |
Once you've created and displayed your SpannableTextView, you can modify the text contents of each
Slice
individually. For example, if we want to change the 3.5/10
from the above example into
6/10
, we could do the following:
// grab the Slice at position 1
Slice slice = stvMarksDown.getSlice(1);
// modify it's text
slice.setText("6/10");
// you must always call display after you alter a Slice's text
stvMarksDown.display();
MIT License
Copyright (c) 2017 milap tank
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
All pull requests are welcome.