public final class Text
extends java.lang.Object
限定符和类型 | 字段和说明 |
---|---|
static int |
ALIGN_BOTTOM
下对齐。
|
static int |
ALIGN_CENTER_HORIZONTAL
水平居中对齐。
|
static int |
ALIGN_CENTER_VERTICAL
垂直居中对齐。
|
static int |
ALIGN_LEFT
左对齐。
|
static int |
ALIGN_RIGHT
右对齐。
|
static int |
ALIGN_TOP
上对齐。
|
限定符和类型 | 方法和说明 |
---|---|
int |
getAlignX()
获取文字覆盖物水平对齐方式。
|
int |
getAlignY()
获取文字覆盖物垂直对齐方式。
|
int |
getBackgroundColor()
获取文字覆盖物的背景颜色。
|
int |
getFontColor()
获取文字覆盖物的字体颜色。
|
int |
getFontSize()
获取文字覆盖物的字体大小。
|
java.lang.Object |
getObject() |
LatLng |
getPosition()
获取文字覆盖物的地理坐标。
|
float |
getRotate()
获取文字覆盖物旋转角度,逆时针。
|
java.lang.String |
getText()
获取文字覆盖物文字内容。
|
Typeface |
getTypeface()
获取文字覆盖物的字体。
|
float |
getZIndex()
获取文字覆盖物zIndex。
|
void |
remove()
去除文字覆盖物。
|
void |
setAlign(int alignX,
int alignY)
设置文字覆盖物对齐方式,默认居中对齐。
|
void |
setBackgroundColor(int color)
设置文字覆盖物背景颜色。
|
void |
setFontColor(int color)
设置文字覆盖物字体颜色。
|
void |
setFontSize(int size)
设置文字覆盖物字体大小。
|
void |
setObject(java.lang.Object object) |
void |
setPosition(LatLng position)
设置文字覆盖物地理坐标。
|
void |
setRotate(float rotate)
设置文字覆盖物旋转角度,逆时针。
|
void |
setText(java.lang.String text)
设置文字覆盖物的文字内容。
|
void |
setTypeface(Typeface typeface)
设置文字覆盖物字体。
|
void |
setZIndex(float zIndex)
设置文字覆盖物 zIndex。
|
public static final int ALIGN_LEFT
public static final int ALIGN_RIGHT
public static final int ALIGN_CENTER_HORIZONTAL
public static final int ALIGN_TOP
public static final int ALIGN_BOTTOM
public static final int ALIGN_CENTER_VERTICAL
public void setPosition(LatLng position)
position
- 地理坐标public LatLng getPosition()
public float getZIndex()
public void setZIndex(float zIndex)
zIndex
- z轴数值public void remove()
public void setObject(java.lang.Object object)
public java.lang.Object getObject()
public void setText(java.lang.String text)
text
- 文字内容public java.lang.String getText()
public void setFontSize(int size)
size
- 字体大小public int getFontSize()
public void setFontColor(int color)
color
- 字体颜色public int getFontColor()
public void setRotate(float rotate)
rotate
- 角度public float getRotate()
public void setBackgroundColor(int color)
color
- 背景颜色public int getBackgroundColor()
public void setTypeface(Typeface typeface)
typeface
- 字体public Typeface getTypeface()
public int getAlignX()
public int getAlignY()
public void setAlign(int alignX, int alignY)
alignX-水平对齐
- alignY-垂直对齐
-