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; /*from www. j a va 2 s . com*/ import android.graphics.Point; import android.text.Spannable; public interface ILayoutCallback { public Point getCursorPosition(int pos); public int getLine(int pos); public Spannable getSpannable(); public int getLineEnd(int line); public int getLineHeight(); }