Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
241e216e
D
Docs
项目概览
OpenHarmony
/
Docs
大约 1 年 前同步成功
通知
159
Star
292
Fork
28
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
Docs
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
241e216e
编写于
3月 24, 2023
作者:
C
chensi10
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
tabs
Signed-off-by:
N
chensi10
<
chensi52@huawei.com
>
上级
2c1ae073
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
85 addition
and
6 deletion
+85
-6
zh-cn/application-dev/reference/arkui-ts/ts-container-tabcontent.md
...ication-dev/reference/arkui-ts/ts-container-tabcontent.md
+74
-6
zh-cn/application-dev/reference/arkui-ts/ts-container-tabs.md
...n/application-dev/reference/arkui-ts/ts-container-tabs.md
+11
-0
未找到文件。
zh-cn/application-dev/reference/arkui-ts/ts-container-tabcontent.md
浏览文件 @
241e216e
...
...
@@ -34,7 +34,7 @@ TabContent()
子页签样式。
### constructor
<sup>9+</sup>
### constructor
constructor(content: string | Resource)
...
...
@@ -44,15 +44,71 @@ SubTabBarStyle的构造函数。
| 参数名 | 参数类型 | 必填 | 参数描述 |
| -------- | -------- | -------- | -------- |
| content | string
\|
[
Resource
](
ts-types.md#resource
)
| 是 | 页签内的文字内容。 |
| content | string
\|
[
Resource
](
ts-types.md#resource
)
| 是 | 页签内的文字内容。从API version 10开始,content类型为ResourceStr。 |
### of<sup>10+</sup>
static of(content: ResourceStr)
SubTabBarStyle的静态构造函数。
**参数:**
| 参数名 | 参数类型 | 必填 | 参数描述 |
| ------- | ------------------------------------------ | ---- | ------------------ |
| content |
[
ResourceStr
](
ts-types.md#resourcestr
)
| 是 | 页签内的文字内容。 |
### 属性
支持以下属性:
| 名称 | 参数类型 | 描述 |
| ------------ | ------------------------------------------------------------ | ------------------------------------------------------------ |
| indicator
<sup>
10+
</sup>
|
[
IndicatorStyle
](
#indicatorstyle10对象说明
)
| 设置选中子页签的下划线风格。
<br
/>
|
| selectedMode
<sup>
10+
</sup>
|
[
SelectedMode
](
#selectedmode10枚举说明
)
| 设置选中子页签的显示方式。
<br
/>
默认值:SelectedMode.Indicator |
| board
<sup>
10+
</sup>
|
[
BoardStyle
](
#boardstyle10对象说明
)
| 设置选中子页签的背板风格。 |
| labelStyle
<sup>
10+
</sup>
|
[
LabelStyle
](
#labelstyle10对象说明
)
| 设置选中子页签的label文本和字体的样式。 |
## IndicatorStyle<sup>10+</sup>对象说明
| 名称 | 参数类型 | 必填 | 描述 |
| -------- | -------- | -------- | -------------------------------- |
| color |
[
ResourceColor
](
ts-types.md#resourcecolor
)
| 否 | 下划线的颜色。
<br/>
默认值:#FF007DFF |
| height |
[
Length
](
ts-types.md#length
)
| 否 | 下划线的高度。
<br/>
默认值:2.0vp |
| width |
[
Length
](
ts-types.md#length
)
| 否 | 下划线的宽度。
<br/>
默认值:0.0vp |
| borderRadius |
[
Length
](
ts-types.md#length
)
| 否 | 下划线的圆角半径。
<br/>
默认值:0.0vp |
| marginTop |
[
Length
](
ts-types.md#length
)
| 否 | 下划线与文字的间距。
<br/>
默认值:8.0vp |
## SelectedMode<sup>10+</sup>枚举说明
| 名称 | 描述 |
| ---------- | ------------------------ |
| Indicator | 使用下划线模式。 |
| Board | 使用背板模式。 |
## BoardStyle<sup>10+</sup>对象说明
| 名称 | 参数类型 | 必填 | 描述 |
| -------- | -------- | -------- | ------------------------------------ |
| borderRadius |
[
Length
](
ts-types.md#length
)
| 否 | 下划线的圆角半径。
<br/>
默认值:8.0vp |
## LabelStyle<sup>10+</sup>对象说明
| 名称 | 参数类型 | 必填 | 描述 |
| -------------------- | ------------------------------------------------------------ | ---- | ------------------------------------------------------------ |
| overflow |
[
TextOverflow
](
ts-appendix-enums.md#textoverflow
)
| 否 | 设置Label文本超长时的显示方式。文本截断是按字截断。例如,英文以单词为最小单位进行截断,若需要以字母为单位进行截断,可在字母间添加零宽空格。 |
| maxLines | number | 否 | 设置Label文本的最大行数。默认情况下,文本是自动折行的,如果指定此参数,则文本最多不会超过指定的行。如果有多余的文本,可以通过 textOverflow来指定截断方式。 |
| minFontSize | number
\|
[
ResourceStr
](
ts-types.md#resourcestr
)
| 否 | 设置Label文本最小显示字号。需配合maxFontSize以及maxLines或布局大小限制使用。 |
| maxFontSize | number
\|
[
ResourceStr
](
ts-types.md#resourcestr
)
| 否 | 设置Label文本最大显示字号。需配合minFontSize以及maxLines或布局大小限制使用。 |
| heightAdaptivePolicy |
[
TextHeightAdaptivePolicy
](
ts-appendix-enums.md#textheightadaptivepolicy10
)
| 否 | 设置Label文本自适应高度的方式。 |
| font |
[
Font
](
ts-types.md#font
)
| 否 | 设置Label文本字体样式。 |
## BottomTabBarStyle<sup>9+</sup>
底部页签和侧边页签样式。
### constructor
<sup>9+</sup>
### constructor
constructor(icon: string | Resource,
tex
t: string | Resource)
constructor(icon: string | Resource,
conten
t: string | Resource)
BottomTabBarStyle的构造函数。
...
...
@@ -60,8 +116,20 @@ BottomTabBarStyle的构造函数。
| 参数名 | 参数类型 | 必填 | 参数描述 |
| -------- | -------- | -------- | -------- |
| icon | string
\|
[
Resource
](
ts-types.md#resource
)
| 是 | 页签内的图片内容。 |
| text | string
\|
[
Resource
](
ts-types.md#resource
)
| 是 | 页签内的文字内容。 |
| icon | string
\|
[
Resource
](
ts-types.md#resource
)
| 是 | 页签内的图片内容。从API version 10开始,icon类型为ResourceStr。 |
| text | string
\|
[
Resource
](
ts-types.md#resource
)
| 是 | 页签内的文字内容。从API version 10开始,text类型为ResourceStr。 |
### of<sup>10+</sup>
static of(icon: ResourceStr, text: ResourceStr)
BottomTabBarStyle的静态构造函数。
**参数:**
| 参数名 | 参数类型 | 必填 | 参数描述 |
| -------- | -------- | -------- | -------- |
| icon |
[
ResourceStr
](
ts-types.md#resourcestr
)
| 是 | 页签内的图片内容。 |
| text |
[
ResourceStr
](
ts-types.md#resourcestr
)
| 是 | 页签内的文字内容。 |
## 示例
...
...
zh-cn/application-dev/reference/arkui-ts/ts-container-tabs.md
浏览文件 @
241e216e
...
...
@@ -44,6 +44,17 @@ Tabs(value?: {barPosition?: BarPosition, index?: number, controller?: [TabsContr
| barWidth | number
\|
Length
<sup>
8+
</sup>
| TabBar的宽度值。 |
| barHeight | number
\|
Length
<sup>
8+
</sup>
| TabBar的高度值。 |
| animationDuration | number | TabContent滑动动画时长。不设置时,点击切换页签无动画,滑动切换有动画;设置时,点击切换和滑动切换都有动画。
<br/>
默认值:200 |
| divider
<sup>
10+
</sup>
|
[
DividerStyle
](
#dividerstyle10对象说明
)
\|
null | 用于设置区分TabBar和TabContent的分割线样式设置分割线样式,默认不显示分割线。
<br/>
DividerStyle: 分割线的样式;
<br/>
null: 不显示分割线。 |
| FadingEdge
<sup>
10+
</sup>
| boolean | 设置页签超过容器宽度时是否渐隐消失
<br
/>
默认值:true |
## DividerStyle<sup>10+</sup>对象说明
| 名称 | 参数类型 | 必填 | 描述 |
| -------- | -------- | -------- | -------- |
| strokeWidth |
[
Length
](
ts-types.md#length
)
| 是 | 分割线的线宽。 |
| color |
[
ResourceColor
](
ts-types.md#resourcecolor
)
| 否 | 分割线的颜色。
<br/>
默认值:#33182431 |
| startMargin |
[
Length
](
ts-types.md#length
)
| 否 | 分割线与侧边栏顶端的距离。
<br/>
默认值:0.0vp |
| endMargin |
[
Length
](
ts-types.md#length
)
| 否 | 分割线与侧边栏底端的距离。
<br/>
默认值:0.0vp |
## BarMode枚举说明
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录