Back to project page android-bubble-text.
The source code is released under:
MIT License
If you think the Android project android-bubble-text listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.oliveira.bubble; //ww w .j a va 2 s .co m import android.graphics.Canvas; import android.graphics.Rect; import android.text.Spannable; import java.util.ArrayList; @SuppressWarnings("unused") public interface BubbleSpan { public void setPressed(boolean value, Spannable s); public void resetWidth(int width); public ArrayList<Rect> rect(ILayoutCallback callback); public void redraw(Canvas canvas); public void setData(Object data); public Object data(); }