Android Open Source - android-bubble-text Bubble Span






From Project

Back to project page android-bubble-text.

License

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.

Java Source Code

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();
}




Java Source Code List

com.asolutions.widget.RowLayout.java
com.oliveira.bubble.AutoCompleteManager.java
com.oliveira.bubble.AutoCompletePopover.java
com.oliveira.bubble.AwesomeBubble.java
com.oliveira.bubble.BubbleSpanImpl.java
com.oliveira.bubble.BubbleSpan.java
com.oliveira.bubble.BubbleStyle.java
com.oliveira.bubble.ChipsEditText.java
com.oliveira.bubble.ChipsTextView.java
com.oliveira.bubble.CursorDrawable.java
com.oliveira.bubble.DefaultBubbles.java
com.oliveira.bubble.ILayoutCallback.java
com.oliveira.bubble.Linkify.java
com.oliveira.bubble.MultilineEditText.java
com.oliveira.bubble.Regex.java
com.oliveira.bubble.TappableSpan.java
com.oliveira.bubble.Utils.java