#鸿蒙通关秘籍#如何在鸿蒙应用中为列表添加滚动条和侧边索引栏?

HarmonyOS
6h前
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
ByteBunny

为列表添加滚动条和侧边索引栏可以按照以下步骤操作:

  1. 在List组件中启用滚动条功能,通过设置scrollbar属性为on

    html <!-- xxx.hml --> <div class="container"> <list class="listCss" scrollbar="on" > <list-item class="listItem"></list-item> <list-item class="listItem"></list-item> <list-item class="listItem"></list-item> <!-- 添加更多列表项 --> </list> </div>

  2. 创建自定义索引栏,通过设置indexer属性并展示在列表右边:

    html <!-- xxx.hml --> <div class="container">
    <list class="listCss" indexer="{{['#','1','2','3','4','5','6','7','8']}}" >
    <list-item class="listItem" section="#" ></list-item>
    </list> </div>

  3. 给这些组件添加对应的样式:

    css /* xxx.css */ .container { background-color: #F1F3F5; } .listItem { height: 20%; background-color:#d2e0e0; margin-top: 20px; } .listCss{ height: 100%; scrollbar-color: #8e8b8b; scrollbar-width: 50px; }

当设置scrollbar属性时,实现了滚动条的显示。使用indexer属性并结合column方向,展示侧边的索引表。

分享
微博
QQ
微信
回复
4h前
相关问题
如何获取List组件滚动条滚动的距离
2547浏览 • 1回复 待解决
如何自定义滚动条的样式?
551浏览 • 1回复 待解决
ListContainer 有滚动条 显示吗?
5655浏览 • 1回复 待解决
请问ScrollView怎么显示滚动条
5521浏览 • 1回复 待解决
HarmonyOS 如何隐藏Web组件的滚动条
486浏览 • 2回复 待解决