android.text.style.ReplacementSpan Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of android Show documentation
Show all versions of android Show documentation
A library jar that provides APIs for Applications written for the Google Android Platform. The branch tag
that was used to checkout the source from the Git repos was android-2.1_r2.
package android.text.style;
public abstract class ReplacementSpan
extends android.text.style.MetricAffectingSpan
{
public ReplacementSpan() { throw new RuntimeException("Stub!"); }
public abstract int getSize(android.graphics.Paint paint, java.lang.CharSequence text, int start, int end, android.graphics.Paint.FontMetricsInt fm);
public abstract void draw(android.graphics.Canvas canvas, java.lang.CharSequence text, int start, int end, float x, int top, int y, int bottom, android.graphics.Paint paint);
public void updateMeasureState(android.text.TextPaint p) { throw new RuntimeException("Stub!"); }
public void updateDrawState(android.text.TextPaint ds) { throw new RuntimeException("Stub!"); }
}