鸿蒙OS开发文档 鸿蒙OS CornerMark

2024-02-25 开发教程 鸿蒙OS开发文档 匿名 3

CornerMark

java.lang.Object
|---ohos.agp.components.CornerMark

public class CornerMark
extends Object

表示一个角标记类来标记组件。

为容器中的组件添加角标记元素,以在组件顶部显示角标记。

嵌套类摘要

修饰符和类型描述
protected static classCornerMark.CornerMarkCleaner表示角标记的清洁器类。

方法总结

修饰符和类型方法描述
ShapeElementgetElement()获取角标的形状元素。
intgetHeight()获取角标记的高度。
StringgetText()获取角标中的文本。
ColorgetTextColor()获取角标中显示的文本的颜色。
intgetTextSize()获取角标中显示的文本的大小。
intgetWidth()获取角标记的宽度。
protected voidregisterCleaner()注册角标记清洁剂。
voidsetElement(ShapeElement element)设置角标记的形状元素。
voidsetHeight(int height)设置角标记的高度。
voidsetText(String text)设置要在角标记中显示的文本。
voidsetTextColor(Color txtColor)设置角标记中显示的文本的颜色。
voidsetTextSize(int textSize)设置要在角标记中显示的文本大小。
voidsetWidth(int width)设置角标记的宽度。
从类 java.lang.Object 继承的方法
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

方法详情

registerCleaner

protected void registerCleaner()

注册角标记清洁剂。

setText

public void setText(String text)

设置要在角标记中显示的文本。

参数:

参数名称参数描述
text指示要设置的文本。

getText

public String getText()

获取角标中的文本。

返回:

返回角标记中的文本。

getElement

public ShapeElement getElement()

获取角标的形状元素。

返回:

返回当前角标记的形状元素。

setElement

public void setElement(ShapeElement element)

设置角标记的形状元素。

参数:

参数名称参数描述
element指示给定的形状元素。

setWidth

public void setWidth(int width)

设置角标记的宽度。

参数:

参数名称参数描述
width表示要设置的宽度。

getWidth

public int getWidth()

获取角标记的宽度。

返回:

返回角标记宽度。

setHeight

public void setHeight(int height)

设置角标记的高度。

参数:

参数名称参数描述
height表示要设置的高度。

getHeight

public int getHeight()

获取角标记的高度。

返回:

返回角标记高度。

setTextSize

public void setTextSize(int textSize)

设置要在角标记中显示的文本大小。

参数:

参数名称参数描述
textSize指示要设置的文本大小。

getTextSize

public int getTextSize()

获取角标中显示的文本的大小。

返回:

返回文本大小。

setTextColor

public void setTextColor(Color txtColor)

设置角标记中显示的文本的颜色。

参数:

参数名称参数描述
txtColor指示要设置的文本颜色。

getTextColor

public Color getTextColor()

获取角标中显示的文本的颜色。

返回:

返回文本颜色。