zhouclcode

Results 9 comments of zhouclcode

![image](https://user-images.githubusercontent.com/10531233/184779746-1bc4106b-0d09-4dba-a9b1-3246471dd203.png) 像这样定一个方法注意把SmartTable泛型指定为*

默认是值相同合并确实会出现这个问题,合并有自己的规则需要使用 ![image](https://user-images.githubusercontent.com/10531233/184780861-00c3f2e7-c973-4f18-9607-2a4e84a74a0b.png)

![image](https://user-images.githubusercontent.com/10531233/184780110-ac8e9eb3-6b3e-4ae8-a8af-7474ff777fe8.png) 构造TableData可以指定title格式化但是没有提供换行的,需要自己参考MultiLineDrawFormat实现

SmartTable.getConfig().setColumnTitleStyle()

不生效是应为AutoSize中试了缓存,需要把缓存清除在手动重置一下; 反射获取AutoSize.mCache调用clear()然后调用AutoSize.autoConvertDensityOfGlobal(activity)再调用页面重绘方法activity?.recreate()

可以试试 mBeginPickerDialog?.findViewById(R.id.dateTimePicker)?.setDefaultMillisecond(beginTime.time)

这个得你自己去实现 /** * 列构造方法 * 用于构造子列 * * @param columnName 列名 * @param fieldName 需要解析的反射字段 * @param drawFormat 绘制格式化 */ public Column(String columnName, String fieldName, IDrawFormat drawFormat) { this(columnName, fieldName,...