列表组件list-view的使用、flex布局教程,以APICloud AVM框架为例

简介: avm.js是 APICloud 推出的多端开发框架。使用 avm.js 一个技术栈可同时开发 Android & iOS 原生 App、小程序和 iOS 轻 App,且多端渲染效果统一;全新的 App 引擎 3.0 不依赖 webView,提供百分百的原生渲染,保障 App 性能和体验与原生 App 一致。

avm.js是 APICloud 推出的多端开发框架。使用 avm.js 一个技术栈可同时开发 Android & iOS 原生 App、小程序和 iOS 轻 App,且多端渲染效果统一;全新的 App 引擎 3.0 不依赖 webView,提供百分百的原生渲染,保障 App 性能和体验与原生 App 一致。

list-view 定义可复用内容的竖向滚动视图,可以优化内存占用和渲染性能,支持下拉刷新和上拉加载。可使用 scroll-view 的基本属性。

list-view 里面可放置 cell、list-header、list-footer、refresh 等组件,使用 cell 组件作为每项显示内容。

下面看一个 list-view 的示例:

<template>
  <list-view id="listView" class="main" enable-back-to-top onscrolltolower={this.onscrolltolower}>
    <cell class="cell c-lc-rl_ac c-sy-border_bottom c-lc-ptb" onclick={this.itemClick}>
      <img class="img" src={item.url} alt="">
      <text class="title c-filling-w c-pl">{item.title}</text>
    </cell>
    <list-footer class="footer">
      <text>加载中...</text>
    </list-footer>
  </list-view></template><style src='../../css/c-layout-mini.css' scoped></style><style>.main { width: 100%;  height: 100%;
}.cell {  width: 100%;  height: 70px;
}.img { height: 50px; width: 50px;  margin-left: 10px;
}.title { height: 50px; font-size: 20px;  line-height: 50px;
}.footer {  justify-content: center;  align-items: center;
}</style><script>export default { name: 'test', methods: {
    apiready() {      this.initData(false);
    },
    initData(loadMore) {      var that = this;      var skip = that.dataList ? that.dataList.length : 0;      var dataList = [];      for (var i = 0; i < 20; i++) {
        dataList[i] = {         title: '项目' + (i + skip),         url: '../../image/nav_tab_2.png'
        }
      }     var listView = document.getElementById('listView');     if (loadMore) {
        that.dataList = that.dataList.concat(dataList);
        listView.insert({         data: dataList
        });
      } else {
        that.dataList = dataList;
        listView.load({         data: dataList
        });
      }
    },
    onscrolltolower() {     this.initData(true);
    },
    itemClick(e) {
      api.alert({       msg: '当前项索引:' + e.currentTarget.index
      });
    }
  }
}</script>

list-view 只支持 APP,需要用自定义 loader 或 APPloader 调试。调试教程可查看文档 APICloud Studio3 WiFi 真机同步和 WiFi 真机预览使用说明

list-view 自带内存回收功能,可以滚动加载更多。

给 list****-view******** 添加下拉刷新组件 ****refresh

根据 refresh 组件文档,把 refresh 标签添加到 list-view 标签中,如下:

<template>
    <list-view id="listView" class="main" enable-back-to-top onscrolltolower={this.onscrolltolower}>
        <refresh class="refresh" state={refreshState} onstatechange={this.onstatechange}>
            <image class={refreshIconClass} src="../../image/refresh.png"></image>
            <image class={refreshLoadingClass} src="../../image/loading_more.gif"></image>
            <text class="refreshStateDesc">{refreshStateDesc}</text>
        </refresh>
    <cell class="cell c-lc-rl_ac c-sy-border_bottom c-lc-ptb" onclick={this.itemClick}>
            <img class="img" src={item.url} alt="">
            <text class="title c-filling-w c-pl">{item.title}</text>
        </cell>
        <list-footer class="footer">
            <text>加载中...</text>
        </list-footer>
    </list-view></template>

把 refresh 组件的 css ,js 代码也复制到相应的 style 和 script 标签中,并在项目目录 image 标签下添加用到的两张下拉刷新图片。完整代码如下:

<template>
    <list-view id="listView" class="main" enable-back-to-top onscrolltolower={this.onscrolltolower}>
        <refresh class="refresh" state={refreshState} onstatechange={this.onstatechange}>
            <image class={refreshIconClass} src="../../image/refresh.png"></image>
            <image class={refreshLoadingClass} src="../../image/loading_more.gif"></image>
            <text class="refreshStateDesc">{refreshStateDesc}</text>
        </refresh>
    <cell class="cell c-lc-rl_ac c-sy-border_bottom c-lc-ptb" onclick={this.itemClick}>
            <img class="img" src={item.url} alt="">
            <text class="title c-filling-w c-pl">{item.title}</text>
        </cell>
        <list-footer class="footer">
            <text>加载中...</text>
        </list-footer>
    </list-view></template><style  src='../../css/c-layout-mini.css' scoped></style><style>.main {  width: 100%;  height: 100%;
}.cell{ width: 100%;  height: 70px;
}.img{  height: 50px; width: 50px;  margin-left: 10px;  
}.title { height: 50px; font-size: 20px;  line-height: 50px;
}  .footer {        justify-content: center;        align-items: center;
    } .refresh {        align-items: center;        justify-content: center;        background-color: #eee;
    }    .refreshStateDesc {        color: #e3007f;        font-size: 13px;
    }    .refreshIcon {        position: absolute;        width: 25px;        height: 22px;        bottom: 21px;        left: 70px;        transition-property: transform;        transition-duration: 100ms;
    }    .refreshIcon-normal {        transform: rotate(0);        visibility: visible;
    }    .refreshIcon-dragging {        transform: rotate(180deg);        visibility: visible;
    }    .refreshIcon-refreshing {        visibility: hidden;
    }    .refreshLoading {        position: absolute;        width: 22px;        height: 22px;        bottom: 21px;        left: 70px;        visibility: hidden;
    }    .refreshLoading-refreshing {        visibility: visible;
    }</style><script>
    export default {        name: 'test',
     data(){            return {                refreshState: 'normal'
            }
        },    computed: {
            refreshIconClass(){                if (this.data.refreshState == 'normal') {                    return 'refreshIcon refreshIcon-normal';
                } else if (this.data.refreshState == 'dragging') {                    return 'refreshIcon refreshIcon-dragging';
                } else if (this.data.refreshState == 'refreshing') {                    return 'refreshIcon refreshIcon-refreshing';
                }
            },
            refreshLoadingClass() {                if (this.data.refreshState == 'refreshing') {                    return 'refreshLoading refreshLoading-refreshing';
                } else {                    return 'refreshLoading';
                }
            },
            refreshStateDesc() {                if (this.data.refreshState == 'normal') {                    return '下拉可以刷新';
                } else if (this.data.refreshState == 'dragging') {                    return '松开可以刷新';
                } else if (this.data.refreshState == 'refreshing') {                    return '刷新中...';
                }
            }
        },        methods:{
            apiready() {                this.initData(false);
            },
            initData(loadMore) {                var that = this;                var skip = that.dataList?that.dataList.length:0;                var dataList = [];                for (var i=0;i<20;i++) {
                    dataList[i] = {                        title: '项目' + (i + skip),                        url: '../../image/nav_tab_2.png'
                    }
                }                var listView = document.getElementById('listView');                if (loadMore) {
                    that.dataList = that.dataList.concat(dataList);
                    listView.insert({                        data: dataList
                    });
                } else {
                    that.dataList = dataList;
                    listView.load({                        data: dataList
                    });
                }
            },
            onscrolltolower() {                this.initData(true);
            },
            itemClick(e) {
                api.alert({                    msg: '当前项索引:' + e.currentTarget.index
                });
            },
      onstatechange(e) {                var state = e.detail.state;                if (state == 'normal') {                    this.data.refreshState = 'normal';
                } else if (state == 'dragging') {                    this.data.refreshState = 'dragging';
                } else if (state == 'refreshing') {                    this.data.refreshState = 'refreshing';                    var that = this;
                    setTimeout(function(){
                        that.data.refreshState = 'normal';
                    }, 2000);
                }
            }
        }
    }</script>


Flex 布局介绍:

Flex 布局意思是弹性盒子布局,比较适合移动端场景,可以自动伸缩适配不同屏幕大小。

<div>

  <div>item</div>

  <div>item</div>

  <div>item</div>

</div>

通常可以把父元素定义为弹性盒子或称为容器,其子元素为弹性盒子的项目。flex 布局的主要功能是在主轴或交叉轴按预期排列分布项目,定义每个项目占用空间比例,并可跟随容器大小伸缩。


APICloud-专业APP开发app定制服务商,提供一站式移动应用解决方案,满足您的各类需求,欢迎免费评估需求和获取报价。

立即免费在线制作一个APP,新手注册即送开发大礼包

提交app定制需求,免费获取报价和周期:

电脑请点击https://app.apicloud.com/index?uzchannel=500

手机请点击https://www.apicloud.com/m/customizedservice


目录
相关文章
|
2天前
|
C语言 Python
[oeasy]python054_python有哪些关键字_keyword_list_列表_reserved_words
本文介绍了Python的关键字列表及其使用规则。通过回顾`hello world`示例,解释了Python中的标识符命名规则,并探讨了关键字如`if`、`for`、`in`等不能作为变量名的原因。最后,通过`import keyword`和`print(keyword.kwlist)`展示了Python的所有关键字,并总结了关键字不能用作标识符的规则。
20 9
|
10天前
|
数据挖掘 大数据 数据处理
python--列表list切分(超详细)
通过这些思维导图和分析说明表,您可以更直观地理解Python列表切分的概念、用法和实际应用。希望本文能帮助您更高效地使用Python进行数据处理和分析。
23 14
|
28天前
|
大数据 UED
「Mac畅玩鸿蒙与硬件16」鸿蒙UI组件篇6 - List 和 Grid 组件展示数据列表
List 和 Grid 是鸿蒙开发中的核心组件,用于展示动态数据。List 适合展示垂直或水平排列的数据列表,而 Grid 则适用于展示商品或图片的网格布局。本篇将展示如何封装组件,并通过按钮实现布局切换,提升界面的灵活性和用户体验。
61 9
「Mac畅玩鸿蒙与硬件16」鸿蒙UI组件篇6 - List 和 Grid 组件展示数据列表
|
12天前
|
数据挖掘 大数据 数据处理
python--列表list切分(超详细)
通过这些思维导图和分析说明表,您可以更直观地理解Python列表切分的概念、用法和实际应用。希望本文能帮助您更高效地使用Python进行数据处理和分析。
29 10
|
22天前
|
容器
Bootstrap5 Flex(弹性)布局4
排序:.order 类可设置弹性子元素的排序,范围从 .order-1 至 .order-12,数字越小优先级越高。外边距:.ms-auto 和 .me-auto 分别用于设置子元素的右侧和左侧外边距为 auto。包裹:.flex-nowrap(默认)、.flex-wrap 和 .flex-wrap-reverse 用于控制弹性容器中的子元素是否换行及换行方向。
|
20天前
|
容器
Bootstrap5 Flex(弹性)布局6
使用 `.align-self-*` 类可控制指定子元素的对齐方式,包括 `.align-self-start`, `.align-self-end`, `.align-self-center`, `.align-self-baseline`, 和 `.align-self-stretch`。示例代码展示了如何在一个弹性布局中应用这些类,以实现不同设备上的响应式设计。
|
20天前
Bootstrap5 Flex(弹性)布局5
使用 .align-content-* 控制多行子元素在垂直方向上的堆叠方式,如 .align-content-start、.align-content-center 等。对于单行子元素,使用 .align-items-* 控制对齐,例如 .align-items-start、.align-items-center 等。示例代码展示了不同对齐效果的应用。
|
22天前
Bootstrap5 Flex(弹性)布局2
介绍Flex布局的水平和垂直方向控制。`.flex-row`使子元素水平排列,默认左对齐;`.flex-row-reverse`则右对齐。`.flex-column`让子元素垂直排列;`.flex-column-reverse`则反向排列。示例展示了不同类的效果,通过改变类名实现布局调整。
|
22天前
Bootstrap5 Flex(弹性)布局3
`.justify-content-*` 类用于调整弹性子元素的对齐方式,支持 start、end、center、between、around 等值。`.flex-fill` 类使所有子元素等宽,而 `.flex-grow-1` 则让指定子元素占据剩余空间。这些类在布局设计中非常实用。
|
6月前
|
安全 Java
java线程之List集合并发安全问题及解决方案
java线程之List集合并发安全问题及解决方案
1019 1
下一篇
DataWorks