本文整理了Java中com.zx.zxutils.views.TableView.ZXTableKeyValues.<init>()
方法的一些代码示例,展示了ZXTableKeyValues.<init>()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ZXTableKeyValues.<init>()
方法的具体详情如下:
包路径:com.zx.zxutils.views.TableView.ZXTableKeyValues
类名称:ZXTableKeyValues
方法名:<init>
暂无
代码示例来源:origin: StannyBing/ZXUtils
public List<ZXTableKeyValues> getList(int length) {
List<ZXTableKeyValues> tableList = new ArrayList<>();
for (int i = 0; i < length; i++) {
ZXTableKeyValues key = new ZXTableKeyValues("第" + i + "个", Math.random() * 100);
tableList.add(key);
}
return tableList;
}
}
代码示例来源:origin: StannyBing/ZXUtils
public ZXTableView setTableList(List<ZXTableKeyValues> tableList) {
this.tableList.clear();
this.tableList.addAll(tableList);
int titleCount = 0;
double valueSum = 0;
for (int i = 0; i < tableList.size(); i++) {
titleCount = titleCount < tableList.get(i).getTitleSum() ? tableList.get(i).getTitleSum() : titleCount;//获取最大title长度
valueSum += tableList.get(i).getValue();//获取值的总数
}
if (valueSum == 0) {
valueSum = 1;
}
tableAdapter.titleCount = titleCount;
tableAdapter.valueSum = valueSum;
if (tableAdapter.showTitleView) {
ZXTableKeyValues titleValue = new ZXTableKeyValues();
titleValue.setTitle(true);
this.tableList.add(0, titleValue);
}
tableAdapter.notifyDataSetChanged();
return this;
}
内容来源于网络,如有侵权,请联系作者删除!