博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Data-Mediator入门系列2-2
阅读量:5832 次
发布时间:2019-06-18

本文共 1471 字,大约阅读时间需要 4 分钟。

学习路径

  • 1, 入门篇
    • 1),
    • 2),
    • 3),
    • 4),
  • 2, 专题篇
    • 1),
    • 2),
    • 3),
  • 3, 源码阅读
    • 1),

数组,列表,SparseArray的属性。

  • 就以之前的 模型 Student来举例说明.
//age是数组属性//name是list属性//id 是SparseArray属性@Fields( {      @Field(propName = "age" , type = int.class, complexType = COMPLEX_ARRAY),      @Field(propName = "name" , type = String.class, complexType = COMPLEX_LIST),      @Field(propName = "id" , type = long.class, complexType = COMPLEX_SPARSE_ARRAY),})public interface Student{}复制代码
  • 生成的模型代码:
@Fields( {      @Field(propName = "age" , type = int.class, complexType = COMPLEX_ARRAY),      @Field(propName = "name" , type = String.class, complexType = COMPLEX_LIST),      @Field(propName = "id" , type = long.class, complexType = COMPLEX_SPARSE_ARRAY),})public interface Student extends Serializable, Parcelable, DataPools.Poolable {    Property PROP_age = SharedProperties.get(int.class.getName(), "age", 1);    Property PROP_name = SharedProperties.get(String.class.getName(), "name", 2);    Property PROP_id = SharedProperties.get(long.class.getName(), "id", 3);    Student setAge(int[] age1);    int[] getAge();    Student setName(List
name1); List
getName(); ListPropertyEditor
beginNameEditor(); Student setId(SparseArray
id1); SparseArray
getId(); SparseArrayPropertyEditor
beginIdEditor();}复制代码

下一章

想要体验最新的特性 ?

请到体验。 如果觉得不错,请star支持下项目哈。

欢迎大家star, fork,contribute ,提issue. 它会越来越棒。

Thanks for reading !

技术源于分享!

转载地址:http://xcrdx.baihongyu.com/

你可能感兴趣的文章
onchange()事件的应用
查看>>
Windows 下最佳的 C++ 开发的 IDE 是什么?
查看>>
软件工程师成长为架构师必备的十项技能
查看>>
python 异常
查看>>
百度账号注销
查看>>
mysql-This version of MySQL doesn’t yet support ‘LIMIT & IN/ALL/ANY/SOME 错误解决
查看>>
BIEE Demo(RPD创建 + 分析 +仪表盘 )
查看>>
Cocos2dx 3.0开发环境的搭建--Eclipse建立在Android工程
查看>>
基本概念复习
查看>>
重构第10天:提取方法(Extract Method)
查看>>
Android Fragment使用(四) Toolbar使用及Fragment中的Toolbar处理
查看>>
解决pycharm在ubuntu下搜狗输入法一直固定在左下角的问题
查看>>
多线程day01
查看>>
react-native 模仿原生 实现下拉刷新/上拉加载更多(RefreshListView)
查看>>
MySQL出现Access denied for user ‘root’@’localhost’ (using password:YES)
查看>>
通过Roslyn构建自己的C#脚本(更新版)(转)
查看>>
红黑树
查看>>
python调用windows api
查看>>
第四章 mybatis批量insert
查看>>
Java并发框架——什么是AQS框架
查看>>