SimpleDecoratedText helps you create simple, beautiful, intelligent, responsive TextViews.
Clean, intuitive design — With SimpleTextView you can create beautiful text views for you application in a single view
Everything on a single TextView — TextDecor class offers a lot of posibilities, adding simple decors to you text : bold, italic, superscript effects to add click listeners on selected texts, change colors, adding shadows and more
Out-of-the-box If you need some specific decoration you can add you own by implementing the interface
Performant, smoothly scrolling fonts in lists adding fonts to text in lists hav no in pact on you scroll performance
Getting started with SimpleDecoratedtext is super easy! Simply add the dependency to you project and follow the instructions below.
You're going to need:
- Gradle or maven — Windows may work, but is unsupported.
- Android
- Add the dependency to you project or visit Bintray for details
compile 'com.dsdmsa.text:text_decor_V01:0.0.5'or
<dependency>
<groupId>com.dsdmsa.text</groupId>
<artifactId>text_decor_V01</artifactId>
<version>0.0.5</version>
<type>pom</type>
</dependency>- Add in your xml Prittytext instead of TextView
<com.decorator.text.textdecor.PrettyText
android:layout_width="match_parent"android:layout_margin="10dp"android:layout_height="match_parent"android:id="@+id/textDecor"/>- Add some decorations in your code
TextDecorbold = newTextDecor.Builder()
.decorate(TextDecor.BOLD)
.build();
TextDecorfontAndUndeline = newTextDecor.Builder()
.decorate(TextDecor.font(this,"fonts/Roboto-Thin.ttf"))
.decorate(TextDecor.UNDERLINE)
.build();
TextDecorroundRgadient = newTextDecor.Builder()
.decorate(TextDecor.setRoundBackground(9,2,newLinearGradient(0,0,545,545,Color.CYAN,Color.BLUE, Shader.TileMode.CLAMP),Color.BLACK))
.decorate(TextDecor.BOLD)
.build();
TextDecorredBack = newTextDecor.Builder()
.decorate(TextDecor.BOLD)
.decorate(TextDecor.setTextColor(Color.RED))
.decorate(TextDecor.setBackground(Color.BLACK))
.decorate(TextDecor.absoluteTextSize(50))
.build();
TextDecorshadowCol = newTextDecor.Builder()
.decorate(TextDecor.addShadow(2,2,5,Color.BLACK))
.decorate(TextDecor.absoluteTextSize(40))
.build();
- Get the prittytext from xml :
prettyText = (PrettyText) findViewById(R.id.textDecor);- And use the decorations with needed text:
prettyText.setText(
roundRgadient.withText("Lorem Ipsum"),
fontAndUndeline.withText(" is simply dummy text"),
" of the printing and typesetting industry.",
roundRgadient.withText(" Lorem Ipsum "),
"has been the industry's standard dummy text ever since the ",
redBack.withText("1500s"),
shadowCol.withText(", when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the "),
redBack.withText("1960s"),
" with the release of ",
bold.withText("Letraset"),
" sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of ",
roundRgadient.withText("Lorem Ipsum")
);- For spans woth params use code like this :
publicstaticDecorationdecor(finalintparam){
returnnewDecoration() {
@OverridepublicObjectnewDecorInstance() {
returnnewCustomSpan(param);
}
};
}- For simple constant spans :
publicstaticfinalDecorationSTRINKE = newDecoration() {
@OverridepublicObjectnewDecorInstance() {
returnnewStrikethroughSpan();
}
};- UNDERLINE
- STRINKE
- TRANSPARENT_BACKGROUND
- SUBSCRIPT
- SUPERSCRIPT
- BOLD
- ITALIC
- ITALIC_BOLD
- setBlur(final int radius, final BlurMaskFilter.Blur style)
- absoluteTextSize(final int size)
- relativeTextSize(final int size)
- font(final Context context, final String font)
- setTextColor(final int color)
- setBackground(final int color)
- setRoundBackground(final int corner, final int padding, final int backgroundColor, final int textColor)
- addShadow(final float dx, final float dy, final float radius, final int color)
- alignRight( )
- alignLeft( )
- alignCenter( )
- replaceTextWithImage(final Context context ,final int id,final int size)
- clickableText(final Click click)
Submit an issue to the SimpleDecoratedText Github if you need any help. And, of course, feel free to submit pull requests with bug fixes or changes.

