public static enum SuperTextView.Adjuster.Opportunity extends java.lang.Enum<SuperTextView.Adjuster.Opportunity>
SuperTextView.Adjuster.setOpportunity(Opportunity)
来指定Adjuster的绘制层级。
在SuperTextView中,绘制层级被从下到上分为:背景层、Drawable层、文字层3个层级。
通过Opportunity来指定你的Adjuster想要插入到那个层级间。枚举常量和说明 |
---|
AT_LAST
最顶层
|
BEFORE_DRAWABLE
背景层和Drawable层之间
|
BEFORE_TEXT
Drawable层和文字层之间
|
限定符和类型 | 方法和说明 |
---|---|
static SuperTextView.Adjuster.Opportunity |
valueOf(java.lang.String name)
返回带有指定名称的该类型的枚举常量。
|
static SuperTextView.Adjuster.Opportunity[] |
values()
按照声明该枚举类型的常量的顺序, 返回
包含这些常量的数组。
|
public static final SuperTextView.Adjuster.Opportunity BEFORE_DRAWABLE
public static final SuperTextView.Adjuster.Opportunity BEFORE_TEXT
public static final SuperTextView.Adjuster.Opportunity AT_LAST
public static SuperTextView.Adjuster.Opportunity[] values()
for (SuperTextView.Adjuster.Opportunity c : SuperTextView.Adjuster.Opportunity.values()) System.out.println(c);
public static SuperTextView.Adjuster.Opportunity valueOf(java.lang.String name)
name
- 要返回的枚举常量的名称。java.lang.IllegalArgumentException
- 如果该枚举类型没有带有指定名称的常量java.lang.NullPointerException
- 如果参数为空值