Example usage for android.text.style BulletSpan BulletSpan

List of usage examples for android.text.style BulletSpan BulletSpan

Introduction

In this page you can find the example usage for android.text.style BulletSpan BulletSpan.

Prototype

public BulletSpan() 

Source Link

Document

Creates a BulletSpan with the default values.

Usage

From source file:org.miaowo.miaowo.util.Html.java

private static void endLi(Editable text) {
    endCssStyle(text);
    endBlockElement(text);
    end(text, Bullet.class, new BulletSpan());
}