阅读(3709)
赞(11)
鸿蒙OS TextAlignment
2022-10-28 10:36:55 更新
TextAlignment
java.lang.Object
|---ohos.agp.utils.TextAlignment
public class TextAlignment
extends Object
设置文本组件使用的对齐模式以与其父组件对齐。
此类设置文本组件如何在按钮和布局等容器中对齐。 对齐方式包括左对齐、右对齐、水平居中对齐、垂直居中对齐、居中对齐、顶部对齐、底部对齐、开始对齐和结束对齐。
Since:
1
字段摘要
修饰符和类型 | 字段 | 描述 |
---|---|---|
static int | BOTTOM | 表示底部对齐。 |
static int | CENTER | 表示中心对齐。 |
static int | END | 表示文本与容器的末端对齐。 |
static int | HORIZONTAL_CENTER | 表示水平居中对齐。 |
static int | LEFT | 表示左对齐。 |
static int | RIGHT | 表示右对齐。 |
static int | START | 表示文本与容器的开头对齐。 |
static int | TOP | 表示顶部对齐。 |
static int | VERTICAL_CENTER | 表示垂直居中对齐。 |
构造函数摘要
构造函数 | 描述 |
---|---|
TextAlignment() |
方法总结
从类 java.lang.Object 继承的方法 |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
字段详细信息
BOTTOM
public static final int BOTTOM
表示底部对齐。
此常量表示文本与容器的底部边缘对齐。
CENTER
public static final int CENTER
表示中心对齐。
此常量表示文本与容器的中心对齐。
END
public static final int END
表示文本与容器的末端对齐。
Since:
3
HORIZONTAL_CENTER
public static final int HORIZONTAL_CENTER
表示水平居中对齐。
此常量表示文本在容器中水平居中。
LEFT
public static final int LEFT
表示左对齐。
此常量指示文本与容器的左边缘对齐。
RIGHT
public static final int RIGHT
表示右对齐。
此常量表示文本与容器的右边缘对齐。
START
public static final int START
表示文本与容器的开头对齐。
Since:
3
TOP
public static final int TOP
表示顶部对齐。
此常量指示文本与容器的顶部边缘对齐。
VERTICAL_CENTER
public static final int VERTICAL_CENTER
表示垂直居中对齐。
此常量表示文本在容器中垂直居中。
构造函数详细信息
TextAlignment
public TextAlignment()