Android developer portal with tools, libraries, and apps

Show: All / Free / Paid / Demo

This lib provides simple and fluent API for creating Android Spannable.

Oct 2, 2017

Kotlin and Java wrappers around SpannableStringBuilder

Sep 29, 2017

Small & simple library to create a link url, mail, mention and tag in TextView.

Aug 23, 2017

Complete abstraction from the Spannable API. Forget about all the boiler plate code and all the Object what nonsense that you have to deal with when working with Spannable.

  • Eliminate setSpan calls by using all the provided methods trough the StyleEZ interface.
  • Chain multiple spans with a fluent style
  • By using both the ContentEZ and StyleEZ interface it removes unnecessary methods from the autocomplete form, and thus it removes clutter.
  • Allows different ways of adding content (String, String Resource and Formatted String)
  • By default it does INCLUSIVE_INCLUSIVE to all the spans
  • After calling any of the inclusive/exclusive methods, all the next methods will be using that flag until apply is called or another flag is used
  • You can create your own locator by extending the Locator interface
Jan 20, 2017

A simple spannable string helper.

Nov 14, 2016
Advertisement

Implementation of LineBackgroundSpan that adds rounded rectangle backgrounds to text.

Jul 19, 2016

A library to work with Spannable.

Dec 14, 2015

HtmlSpanner allows you full control over how tags are rendered and gives you all the data about the location of a tag in the text. This allows proper handling of anchors, tables, numbered lists and unordered lists.

Sep 9, 2015

A helper class that extends SpannableStringBuilder and adds methods to easily mark the text with multiple spans.

Jun 7, 2015

You can use it to quickly turn a String into a Spannable and apply different types of spans to it.

new Makeup( name + ", " + age).boldify(0, name.length()).apply()

This would show a name and age of a person, and make the name part bold.

Dec 8, 2014