Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Xts Acts
提交
3260fe4d
X
Xts Acts
项目概览
OpenHarmony
/
Xts Acts
1 年多 前同步成功
通知
9
Star
22
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
X
Xts Acts
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
3260fe4d
编写于
4月 25, 2023
作者:
O
openharmony_ci
提交者:
Gitee
4月 25, 2023
浏览文件
操作
浏览文件
下载
差异文件
!8519 tabs xts补充
Merge pull request !8519 from chensi10/tabs0421
上级
b4185269
0f0b26c8
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
42 addition
and
8 deletion
+42
-8
arkui/ace_ets_components_ux/ace_ets_component_tabs/src/main/ets/TestAbility/pages/Index.ets
...s_component_tabs/src/main/ets/TestAbility/pages/Index.ets
+6
-0
arkui/ace_ets_components_ux/ace_ets_component_tabs/src/main/ets/test/Tabs.ets
...ents_ux/ace_ets_component_tabs/src/main/ets/test/Tabs.ets
+36
-8
未找到文件。
arkui/ace_ets_components_ux/ace_ets_component_tabs/src/main/ets/TestAbility/pages/Index.ets
浏览文件 @
3260fe4d
...
...
@@ -240,6 +240,12 @@ struct TabsExample {
Column().width('100%').height('100%').backgroundColor(Color.Yellow)
}.tabBar(SubTabBarStyle.of('pink'))
.key('indicatorTest5')
TabContent() {
Column().width('100%').height('100%').backgroundColor(Color.Yellow)
}.tabBar(SubTabBarStyle.of('pink')
.labelStyle({ overflow: null, maxLines: null, minFontSize: null, maxFontSize: null, heightAdaptivePolicy: null, font: { size: null, weight: null, family: null, style: null } }))
.key('indicatorTest6')
}
.vertical(true).scrollable(true).barMode(BarMode.Fixed)
.barWidth(70).barHeight('100%').animationDuration(400)
...
...
arkui/ace_ets_components_ux/ace_ets_component_tabs/src/main/ets/test/Tabs.ets
浏览文件 @
3260fe4d
...
...
@@ -515,11 +515,17 @@ export default function tabs() {
console.info("ArkUI_Tabs_LabelStyle_0100 start");
let strJson = getInspectorByKey('indicatorTest5');
let obj = JSON.parse(strJson);
console.info("[ArkUI_Tabs_LabelStyle_0100] labelStyle:" +
obj.$attrs.tabBar.labelStyle
);
console.info("[ArkUI_Tabs_LabelStyle_0100] labelStyle:" +
JSON.stringify(obj.$attrs.tabBar.labelStyle)
);
expect(obj.$attrs.tabBar.labelStyle.overflow).assertEqual('TextOverflow.Ellipsis');
expect(obj.$attrs.tabBar.labelStyle.maxLines).assertEqual('1');
expect(obj.$attrs.tabBar.labelStyle.minFontSize).assertEqual('0.00vp');
expect(obj.$attrs.tabBar.labelStyle.maxFontSize).assertEqual('0.00vp');
expect(obj.$attrs.tabBar.labelStyle.heightAdaptivePolicy).assertEqual('TextHeightAdaptivePolicy.MAX_LINES_FIRST');
expect(obj.$attrs.tabBar.labelStyle.font.size).assertEqual('16.00fp');
expect(obj.$attrs.tabBar.labelStyle.font.weight).assertEqual('FontWeight.Normal');
expect(obj.$attrs.tabBar.labelStyle.font.family).assertEqual('HarmonyOS Sans');
expect(obj.$attrs.tabBar.labelStyle.font.style).assertEqual('FontStyle.Normal');
done();
});
...
...
@@ -532,8 +538,7 @@ export default function tabs() {
console.info("ArkUI_Tabs_LabelStyle_0200 start");
let strJson = getInspectorByKey('indicatorTest1');
let obj = JSON.parse(strJson);
console.info("[ArkUI_Tabs_LabelStyle_0200] labelStyle:" + obj.$attrs.tabBar.labelStyle);
console.info("[ArkUI_Tabs_LabelStyle_0200] labelStyle:" + obj.$attrs.tabBar.labelStyle.font);
console.info("[ArkUI_Tabs_LabelStyle_0200] labelStyle:" + JSON.stringify(obj.$attrs.tabBar.labelStyle));
expect(obj.$attrs.tabBar.labelStyle.overflow).assertEqual('TextOverflow.Ellipsis');
expect(obj.$attrs.tabBar.labelStyle.maxLines).assertEqual('1');
...
...
@@ -553,7 +558,7 @@ export default function tabs() {
await Utils.sleep(2000);
let strJson = getInspectorByKey('indicatorTest2');
let obj = JSON.parse(strJson);
console.info("[ArkUI_Tabs_LabelStyle_0300] labelStyle:" +
obj.$attrs.tabBar.labelStyle
);
console.info("[ArkUI_Tabs_LabelStyle_0300] labelStyle:" +
JSON.stringify(obj.$attrs.tabBar.labelStyle)
);
expect(obj.$attrs.tabBar.labelStyle.overflow).assertEqual('TextOverflow.Clip');
expect(obj.$attrs.tabBar.labelStyle.maxLines).assertEqual('1');
expect(obj.$attrs.tabBar.labelStyle.minFontSize).assertEqual('5.00fp');
...
...
@@ -573,7 +578,7 @@ export default function tabs() {
let strJson = getInspectorByKey('indicatorTest3');
let obj = JSON.parse(strJson);
console.info("[ArkUI_Tabs_LabelStyle_0400] labelStyle:" +
obj.$attrs.tabBar.labelStyle
);
console.info("[ArkUI_Tabs_LabelStyle_0400] labelStyle:" +
JSON.stringify(obj.$attrs.tabBar.labelStyle)
);
expect(obj.$attrs.tabBar.labelStyle.overflow).assertEqual('TextOverflow.None');
expect(obj.$attrs.tabBar.labelStyle.maxLines).assertEqual('2');
expect(obj.$attrs.tabBar.labelStyle.minFontSize).assertEqual('5.00fp');
...
...
@@ -588,12 +593,12 @@ export default function tabs() {
* @tc.name Tests the labelStyle when line feed
* @tc.desc set labelStyle to line feed
*/
it('ArkUI_Tabs_LabelStyle_0
4
00', 0, async function (done) {
console.info("ArkUI_Tabs_LabelStyle_0
4
00 start");
it('ArkUI_Tabs_LabelStyle_0
5
00', 0, async function (done) {
console.info("ArkUI_Tabs_LabelStyle_0
5
00 start");
let strJson = getInspectorByKey('indicatorTest4');
let obj = JSON.parse(strJson);
console.info("[ArkUI_Tabs_LabelStyle_0
400] labelStyle:" + obj.$attrs.tabBar.labelStyle
);
console.info("[ArkUI_Tabs_LabelStyle_0
500] labelStyle:" + JSON.stringify(obj.$attrs.tabBar.labelStyle)
);
expect(obj.$attrs.tabBar.labelStyle.overflow).assertEqual('TextOverflow.None');
expect(obj.$attrs.tabBar.labelStyle.maxLines).assertEqual('10');
expect(obj.$attrs.tabBar.labelStyle.minFontSize).assertEqual('5.00fp');
...
...
@@ -603,6 +608,29 @@ export default function tabs() {
done();
});
/**
* @tc.number ArkUI_Tabs_LabelStyle_0600
* @tc.name Tests the labelStyle when null
* @tc.desc set labelStyle to when null
*/
it('ArkUI_Tabs_LabelStyle_0600', 0, async function (done) {
console.info("ArkUI_Tabs_LabelStyle_0600 start");
let strJson = getInspectorByKey('indicatorTest6');
let obj = JSON.parse(strJson);
console.info("[ArkUI_Tabs_LabelStyle_0600] labelStyle:" + JSON.stringify(obj.$attrs.tabBar.labelStyle));
expect(obj.$attrs.tabBar.labelStyle.overflow).assertEqual('TextOverflow.Ellipsis');
expect(obj.$attrs.tabBar.labelStyle.maxLines).assertEqual('1');
expect(obj.$attrs.tabBar.labelStyle.minFontSize).assertEqual('0.00vp');
expect(obj.$attrs.tabBar.labelStyle.maxFontSize).assertEqual('0.00vp');
expect(obj.$attrs.tabBar.labelStyle.heightAdaptivePolicy).assertEqual('TextHeightAdaptivePolicy.MAX_LINES_FIRST');
expect(obj.$attrs.tabBar.labelStyle.font.size).assertEqual('16.00fp');
expect(obj.$attrs.tabBar.labelStyle.font.weight).assertEqual('FontWeight.Normal');
expect(obj.$attrs.tabBar.labelStyle.font.family).assertEqual('HarmonyOS Sans');
expect(obj.$attrs.tabBar.labelStyle.font.style).assertEqual('FontStyle.Normal');
done();
});
/**
* @tc.number ArkUI_Tabs_FadingEdge_0100
* @tc.name Tests the fadingEdge property of the tabs component
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录