FileDocCategorySizeDatePackage
TextAttribute.javaAPI DocAndroid 1.5 API1516Wed May 06 22:42:02 BST 2009com.android.internal.telephony.gsm.stk

TextAttribute

public class TextAttribute extends Object
Class for representing text attributes for SIM Toolkit. {@hide}

Fields Summary
public int
start
public int
length
public TextAlignment
align
public FontSize
size
public boolean
bold
public boolean
italic
public boolean
underlined
public boolean
strikeThrough
public TextColor
color
Constructors Summary
public TextAttribute(int start, int length, TextAlignment align, FontSize size, boolean bold, boolean italic, boolean underlined, boolean strikeThrough, TextColor color)

        this.start = start;
        this.length = length;
        this.align = align;
        this.size = size;
        this.bold = bold;
        this.italic = italic;
        this.underlined = underlined;
        this.strikeThrough = strikeThrough;
        this.color = color;
    
Methods Summary